blob: 8f800393538297fca43a1e574985e1295f83c734 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
const { GeckoViewUtils } = ChromeUtils.import(
"resource://gre/modules/GeckoViewUtils.jsm"
);
var EXPORTED_SYMBOLS = ["GeckoViewActorChild"];
class GeckoViewActorChild extends JSWindowActorChild {
static initLogging(aModuleName) {
const tag = aModuleName.replace("GeckoView", "") + "[C]";
return GeckoViewUtils.initLogging(tag);
}
actorCreated() {
this.eventDispatcher = GeckoViewUtils.getDispatcherForWindow(
this.docShell.domWindow
);
}
/** Returns true if this docShell is of type Content, false otherwise. */
get isContentWindow() {
if (!this.docShell) {
return false;
}
// Some WebExtension windows are tagged as content but really they are not
// for us (e.g. the remote debugging window or the background extension
// page).
const browser = this.browsingContext.top.embedderElement;
if (browser) {
const viewType = browser.getAttribute("webextension-view-type");
if (viewType) {
debug`webextension-view-type: ${viewType}`;
return false;
}
const debugTarget = browser.getAttribute(
"webextension-addon-debug-target"
);
if (debugTarget) {
debug`webextension-addon-debug-target: ${debugTarget}`;
return false;
}
}
return this.docShell.itemType == this.docShell.typeContent;
}
}
const { debug, warn } = GeckoViewUtils.initLogging("Actor[C]");
|