mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 01:02:08 +01:00
minor code review
This commit is contained in:
parent
b190f0b183
commit
04d11d25b6
1 changed files with 5 additions and 5 deletions
10
platform/firefox/bootstrap.js
vendored
10
platform/firefox/bootstrap.js
vendored
|
@ -26,7 +26,7 @@
|
|||
|
||||
/******************************************************************************/
|
||||
|
||||
const {classes: Cc} = Components;
|
||||
const {classes: Cc, interfaces: Ci} = Components;
|
||||
|
||||
// Accessing the context of the background page:
|
||||
// var win = Services.appShell.hiddenDOMWindow.document.querySelector('iframe[src*=ublock0]').contentWindow;
|
||||
|
@ -37,7 +37,7 @@ const hostName = 'ublock0';
|
|||
const restartListener = {
|
||||
get messageManager() {
|
||||
return Cc['@mozilla.org/parentprocessmessagemanager;1']
|
||||
.getService(Components.interfaces.nsIMessageListenerManager);
|
||||
.getService(Ci.nsIMessageListenerManager);
|
||||
},
|
||||
|
||||
receiveMessage: function() {
|
||||
|
@ -54,7 +54,7 @@ function startup(data, reason) {
|
|||
}
|
||||
|
||||
let appShell = Cc['@mozilla.org/appshell/appShellService;1']
|
||||
.getService(Components.interfaces.nsIAppShellService);
|
||||
.getService(Ci.nsIAppShellService);
|
||||
|
||||
let onReady = function(e) {
|
||||
if ( e ) {
|
||||
|
@ -99,7 +99,7 @@ function startup(data, reason) {
|
|||
}
|
||||
|
||||
let ww = Cc['@mozilla.org/embedcomp/window-watcher;1']
|
||||
.getService(Components.interfaces.nsIWindowWatcher);
|
||||
.getService(Ci.nsIWindowWatcher);
|
||||
|
||||
ww.registerNotification({
|
||||
observe: function(win, topic) {
|
||||
|
@ -144,7 +144,7 @@ function shutdown(data, reason) {
|
|||
function install(/*aData, aReason*/) {
|
||||
// https://bugzil.la/719376
|
||||
Cc['@mozilla.org/intl/stringbundle;1']
|
||||
.getService(Components.interfaces.nsIStringBundleService)
|
||||
.getService(Ci.nsIStringBundleService)
|
||||
.flushBundles();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue