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 RefreshBlockerParent extends JSWindowActorParent {
6 receiveMessage(message) {
7 if (message.name == "RefreshBlocker:Blocked") {
8 let browser = this.browsingContext.top.embedderElement;
10 let gBrowser = browser.ownerGlobal.gBrowser;
12 gBrowser.refreshBlocked(this, browser, message.data);