diff options
author | Gaming4JC <g4jc@bulletmail.org> | 2019-03-16 15:03:26 -0400 |
---|---|---|
committer | Gaming4JC <g4jc@bulletmail.org> | 2019-03-16 15:03:26 -0400 |
commit | 062ee85eff30a1d256a56a615e0a3486176c83b4 (patch) | |
tree | d2383870112c01204faf5a202ef8bb5551a0040d /base | |
parent | ec1a475693dcbe9ceb17a2b709e913e9ef0fed34 (diff) | |
download | iceweasel-uxp-062ee85eff30a1d256a56a615e0a3486176c83b4.tar.gz |
backport uxp #936: Remove webextensions conditional code from Iceweasel-UXP
Diffstat (limited to 'base')
-rw-r--r-- | base/content/tab-content.js | 11 | ||||
-rw-r--r-- | base/content/urlbarBindings.xml | 19 |
2 files changed, 0 insertions, 30 deletions
diff --git a/base/content/tab-content.js b/base/content/tab-content.js index 5a06c31..35ef8ce 100644 --- a/base/content/tab-content.js +++ b/base/content/tab-content.js @@ -9,9 +9,6 @@ var {classes: Cc, interfaces: Ci, utils: Cu, results: Cr} = Components; Cu.import("resource://gre/modules/XPCOMUtils.jsm"); Cu.import("resource://gre/modules/Services.jsm"); -#ifdef MOZ_WEBEXTENSIONS -Cu.import("resource://gre/modules/ExtensionContent.jsm"); -#endif XPCOMUtils.defineLazyModuleGetter(this, "E10SUtils", "resource:///modules/E10SUtils.jsm"); @@ -889,14 +886,6 @@ var RefreshBlocker = { RefreshBlocker.init(); -#ifdef MOZ_WEBEXTENSIONS -ExtensionContent.init(this); -addEventListener("unload", () => { - ExtensionContent.uninit(this); - RefreshBlocker.uninit(); -}); -#endif - addMessageListener("AllowScriptsToClose", () => { content.QueryInterface(Ci.nsIInterfaceRequestor) .getInterface(Ci.nsIDOMWindowUtils) diff --git a/base/content/urlbarBindings.xml b/base/content/urlbarBindings.xml index 244e0c9..e89f6fb 100644 --- a/base/content/urlbarBindings.xml +++ b/base/content/urlbarBindings.xml @@ -56,11 +56,6 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/. <field name="AppConstants" readonly="true"> (Components.utils.import("resource://gre/modules/AppConstants.jsm", {})).AppConstants; </field> -#ifdef MOZ_WEBEXTENSIONS - <field name="ExtensionSearchHandler" readonly="true"> - (Components.utils.import("resource://gre/modules/ExtensionSearchHandler.jsm", {})).ExtensionSearchHandler; - </field> -#endif <constructor><![CDATA[ this._prefs = Components.classes["@mozilla.org/preferences-service;1"] @@ -488,15 +483,6 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/. actionDetails ); break; -#ifdef MOZ_WEBEXTENSIONS - case "extension": - this.handleRevert(); - // Give the extension control of handling the command. - let searchString = action.params.content; - let keyword = action.params.keyword; - this.ExtensionSearchHandler.handleInputEntered(keyword, searchString, where); - return; -#endif } } else { // This is a fallback for add-ons and old testing code that directly @@ -1212,11 +1198,6 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/. this._clearNoActions(); this.formatValue(); } -#ifdef MOZ_WEBEXTENSIONS - if (ExtensionSearchHandler.hasActiveInputSession()) { - ExtensionSearchHandler.handleInputCancelled(); - } -#endif ]]></handler> <handler event="dragstart" phase="capturing"><![CDATA[ |