123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- "use strict";
- /**
- * Copyright 2023 Google LLC.
- * Copyright (c) Microsoft Corporation.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.EVENT_NAMES = exports.Network = exports.BrowsingContext = exports.Log = exports.Script = exports.BiDiModule = void 0;
- // keep-sorted end
- var BiDiModule;
- (function (BiDiModule) {
- // keep-sorted start
- BiDiModule["Browser"] = "browser";
- BiDiModule["BrowsingContext"] = "browsingContext";
- BiDiModule["Cdp"] = "cdp";
- BiDiModule["Input"] = "input";
- BiDiModule["Log"] = "log";
- BiDiModule["Network"] = "network";
- BiDiModule["Script"] = "script";
- BiDiModule["Session"] = "session";
- // keep-sorted end
- })(BiDiModule || (exports.BiDiModule = BiDiModule = {}));
- var Script;
- (function (Script) {
- let EventNames;
- (function (EventNames) {
- // keep-sorted start
- EventNames["Message"] = "script.message";
- EventNames["RealmCreated"] = "script.realmCreated";
- EventNames["RealmDestroyed"] = "script.realmDestroyed";
- // keep-sorted end
- })(EventNames = Script.EventNames || (Script.EventNames = {}));
- })(Script || (exports.Script = Script = {}));
- var Log;
- (function (Log) {
- let EventNames;
- (function (EventNames) {
- EventNames["LogEntryAdded"] = "log.entryAdded";
- })(EventNames = Log.EventNames || (Log.EventNames = {}));
- })(Log || (exports.Log = Log = {}));
- var BrowsingContext;
- (function (BrowsingContext) {
- let EventNames;
- (function (EventNames) {
- // keep-sorted start
- EventNames["ContextCreated"] = "browsingContext.contextCreated";
- EventNames["ContextDestroyed"] = "browsingContext.contextDestroyed";
- EventNames["DomContentLoaded"] = "browsingContext.domContentLoaded";
- EventNames["DownloadWillBegin"] = "browsingContext.downloadWillBegin";
- EventNames["FragmentNavigated"] = "browsingContext.fragmentNavigated";
- EventNames["Load"] = "browsingContext.load";
- EventNames["NavigationAborted"] = "browsingContext.navigationAborted";
- EventNames["NavigationFailed"] = "browsingContext.navigationFailed";
- EventNames["NavigationStarted"] = "browsingContext.navigationStarted";
- EventNames["UserPromptClosed"] = "browsingContext.userPromptClosed";
- EventNames["UserPromptOpened"] = "browsingContext.userPromptOpened";
- // keep-sorted end
- })(EventNames = BrowsingContext.EventNames || (BrowsingContext.EventNames = {}));
- })(BrowsingContext || (exports.BrowsingContext = BrowsingContext = {}));
- var Network;
- (function (Network) {
- let EventNames;
- (function (EventNames) {
- // keep-sorted start
- EventNames["AuthRequired"] = "network.authRequired";
- EventNames["BeforeRequestSent"] = "network.beforeRequestSent";
- EventNames["FetchError"] = "network.fetchError";
- EventNames["ResponseCompleted"] = "network.responseCompleted";
- EventNames["ResponseStarted"] = "network.responseStarted";
- // keep-sorted end
- })(EventNames = Network.EventNames || (Network.EventNames = {}));
- })(Network || (exports.Network = Network = {}));
- exports.EVENT_NAMES = new Set([
- // keep-sorted start
- ...Object.values(BiDiModule),
- ...Object.values(BrowsingContext.EventNames),
- ...Object.values(Log.EventNames),
- ...Object.values(Network.EventNames),
- ...Object.values(Script.EventNames),
- // keep-sorted end
- ]);
- //# sourceMappingURL=chromium-bidi.js.map
|