Backed out changeset e396dfbd2f76 (bug 1905712)
[gecko.git] / toolkit / actors / ContentMetaParent.sys.mjs
blob4cdc6c3c8548a71e141bf4b69e926b599a019951
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 export class ContentMetaParent extends JSWindowActorParent {
6   receiveMessage(message) {
7     if (message.name == "Meta:SetPageInfo") {
8       let browser = this.manager.browsingContext.top.embedderElement;
9       if (browser) {
10         let event = new browser.ownerGlobal.CustomEvent("pageinfo", {
11           bubbles: true,
12           cancelable: false,
13           detail: {
14             url: message.data.url,
15             description: message.data.description,
16             previewImageURL: message.data.previewImageURL,
17           },
18         });
19         browser.dispatchEvent(event);
20       }
21     }
22   }