mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
|
/* 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/. */
|
||
|
|
||
|
"use strict";
|
||
|
|
||
|
let Cc = Components.classes;
|
||
|
let Ci = Components.interfaces;
|
||
|
let Cu = Components.utils;
|
||
|
|
||
|
this.EXPORTED_SYMBOLS = [ "AboutNewTab" ];
|
||
|
|
||
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
||
|
Cu.import("resource://gre/modules/Services.jsm");
|
||
|
|
||
|
XPCOMUtils.defineLazyModuleGetter(this, "RemotePages",
|
||
|
"resource://gre/modules/RemotePageManager.jsm");
|
||
|
XPCOMUtils.defineLazyModuleGetter(this, "NewTabUtils",
|
||
|
"resource://gre/modules/NewTabUtils.jsm");
|
||
|
|
||
|
let AboutNewTab = {
|
||
|
|
||
|
pageListener: null,
|
||
|
|
||
|
init: function() {
|
||
|
this.pageListener = new RemotePages("about:newtab");
|
||
|
this.pageListener.addMessageListener("NewTab:Customize", this.customize.bind(this));
|
||
|
},
|
||
|
|
||
|
customize: function(message) {
|
||
|
NewTabUtils.allPages.enabled = message.data.enabled;
|
||
|
NewTabUtils.allPages.enhanced = message.data.enhanced;
|
||
|
},
|
||
|
|
||
|
uninit: function() {
|
||
|
this.pageListener.destroy();
|
||
|
this.pageListener = null;
|
||
|
},
|
||
|
};
|