diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-03-30 20:11:32 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2019-03-30 20:11:32 -0400 |
commit | 349ceffd890dc29c93b46ee193f52b0801ad0f69 (patch) | |
tree | db0cb6aa0388ed7993dd89648d61965378af3a54 /application/basilisk/base/content/browser.js | |
parent | 711c9cd6cd08f4fe10eb7544aa3a51dfb863bfeb (diff) | |
download | UXP-349ceffd890dc29c93b46ee193f52b0801ad0f69.tar UXP-349ceffd890dc29c93b46ee193f52b0801ad0f69.tar.gz UXP-349ceffd890dc29c93b46ee193f52b0801ad0f69.tar.lz UXP-349ceffd890dc29c93b46ee193f52b0801ad0f69.tar.xz UXP-349ceffd890dc29c93b46ee193f52b0801ad0f69.zip |
[BASILISK] Remove FxA infected Sync - Part 1: Remove or condition CUI and Integration Points
Diffstat (limited to 'application/basilisk/base/content/browser.js')
-rw-r--r-- | application/basilisk/base/content/browser.js | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/application/basilisk/base/content/browser.js b/application/basilisk/base/content/browser.js index ddbe11a9d..d22316834 100644 --- a/application/basilisk/base/content/browser.js +++ b/application/basilisk/base/content/browser.js @@ -46,7 +46,6 @@ Cu.import("resource://gre/modules/NotificationDB.jsm"); ["Task", "resource://gre/modules/Task.jsm"], ["UpdateUtils", "resource://gre/modules/UpdateUtils.jsm"], ["Weave", "resource://services-sync/main.js"], - ["fxAccounts", "resource://gre/modules/FxAccounts.jsm"], #ifdef MOZ_DEVTOOLS // Note: Do not delete! It is used for: base/content/nsContextMenu.js ["gDevTools", "resource://devtools/client/framework/gDevTools.jsm"], @@ -1305,10 +1304,6 @@ var gBrowserInit = { FullScreen.init(); PointerLock.init(); - // initialize the sync UI - gSyncUI.init(); - gFxAccounts.init(); - if (AppConstants.MOZ_DATA_REPORTING) gDataNotificationInfoBar.init(); @@ -1445,8 +1440,6 @@ var gBrowserInit = { FullScreen.uninit(); - gFxAccounts.uninit(); - Services.obs.removeObserver(gPluginHandler.NPAPIPluginCrashed, "plugin-crashed"); try { @@ -1606,9 +1599,6 @@ if (AppConstants.platform == "macosx") { // initialize the private browsing UI gPrivateBrowsingUI.init(); - - // initialize the sync UI - gSyncUI.init(); }; gBrowserInit.nonBrowserWindowShutdown = function() { @@ -7540,8 +7530,6 @@ var TabContextMenu = { this.contextTab.addEventListener("TabAttrModified", this, false); aPopupMenu.addEventListener("popuphiding", this, false); - - gFxAccounts.updateTabContextMenu(aPopupMenu); }, handleEvent(aEvent) { switch (aEvent.type) { |