diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-02-11 06:57:08 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-02-11 06:57:08 -0500 |
commit | 8f6d3dab81c7f8f97ef197e26ab9439b09735b8f (patch) | |
tree | 3ddec75b2f4a3278c92efeffc577480f811f03e9 /devtools/server/actors/webbrowser.js | |
parent | 14bfaf641a10699258070219fec13d48c56d2e62 (diff) | |
download | UXP-8f6d3dab81c7f8f97ef197e26ab9439b09735b8f.tar UXP-8f6d3dab81c7f8f97ef197e26ab9439b09735b8f.tar.gz UXP-8f6d3dab81c7f8f97ef197e26ab9439b09735b8f.tar.lz UXP-8f6d3dab81c7f8f97ef197e26ab9439b09735b8f.tar.xz UXP-8f6d3dab81c7f8f97ef197e26ab9439b09735b8f.zip |
Make Devtools function without WebExtensions
Diffstat (limited to 'devtools/server/actors/webbrowser.js')
-rw-r--r-- | devtools/server/actors/webbrowser.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/devtools/server/actors/webbrowser.js b/devtools/server/actors/webbrowser.js index 0edcdc187..1808895b1 100644 --- a/devtools/server/actors/webbrowser.js +++ b/devtools/server/actors/webbrowser.js @@ -30,7 +30,9 @@ loader.lazyRequireGetter(this, "WorkerActorList", "devtools/server/actors/worker loader.lazyRequireGetter(this, "ServiceWorkerRegistrationActorList", "devtools/server/actors/worker", true); loader.lazyRequireGetter(this, "ProcessActorList", "devtools/server/actors/process", true); loader.lazyImporter(this, "AddonManager", "resource://gre/modules/AddonManager.jsm"); +#ifdef MOZ_WEBEXTENSIONS loader.lazyImporter(this, "ExtensionContent", "resource://gre/modules/ExtensionContent.jsm"); +#endif // Assumptions on events module: // events needs to be dispatched synchronously, @@ -982,6 +984,7 @@ TabActor.prototype = { return null; }, +#ifdef MOZ_WEBEXTENSIONS /** * Getter for the WebExtensions ContentScript globals related to the * current tab content's DOM window. @@ -994,6 +997,7 @@ TabActor.prototype = { return []; }, +#endif /** * Getter for the list of all content DOM windows in this tabActor |