diff options
Diffstat (limited to 'ext/js/comm')
-rw-r--r-- | ext/js/comm/cross-frame-api.js | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/ext/js/comm/cross-frame-api.js b/ext/js/comm/cross-frame-api.js index eb9bed38..8fbee20c 100644 --- a/ext/js/comm/cross-frame-api.js +++ b/ext/js/comm/cross-frame-api.js @@ -291,8 +291,10 @@ export class CrossFrameAPIPort extends EventDispatcher { export class CrossFrameAPI { /** * @param {import('../comm/api.js').API} api + * @param {?number} tabId + * @param {?number} frameId */ - constructor(api) { + constructor(api, tabId, frameId) { /** @type {import('../comm/api.js').API} */ this._api = api; /** @type {number} */ @@ -306,15 +308,14 @@ export class CrossFrameAPI { /** @type {(port: CrossFrameAPIPort) => void} */ this._onDisconnectBind = this._onDisconnect.bind(this); /** @type {?number} */ - this._tabId = null; + this._tabId = tabId; /** @type {?number} */ - this._frameId = null; + this._frameId = frameId; } /** */ - async prepare() { + prepare() { chrome.runtime.onConnect.addListener(this._onConnect.bind(this)); - ({tabId: this._tabId = null, frameId: this._frameId = null} = await this._api.frameInformationGet()); } /** |