diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-11-04 11:40:18 +0000 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-11-04 11:40:18 +0000 |
commit | 082670ecb19a229ea20bf9b69991341d4be25e38 (patch) | |
tree | 6fa8efb4e60bb0f55bbc96928377e06b7ac48fe1 | |
parent | bbc2206a0fda053a6f5071b457bd209dab9ed268 (diff) | |
download | UXP-082670ecb19a229ea20bf9b69991341d4be25e38.tar UXP-082670ecb19a229ea20bf9b69991341d4be25e38.tar.gz UXP-082670ecb19a229ea20bf9b69991341d4be25e38.tar.lz UXP-082670ecb19a229ea20bf9b69991341d4be25e38.tar.xz UXP-082670ecb19a229ea20bf9b69991341d4be25e38.zip |
Issue #1252 - Remove fragile fast path.
This resolves #1252.
-rw-r--r-- | application/basilisk/base/content/tabbrowser.xml | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/application/basilisk/base/content/tabbrowser.xml b/application/basilisk/base/content/tabbrowser.xml index 85f923923..df83f677f 100644 --- a/application/basilisk/base/content/tabbrowser.xml +++ b/application/basilisk/base/content/tabbrowser.xml @@ -371,17 +371,6 @@ <parameter name="aWindow"/> <body> <![CDATA[ - // When not using remote browsers, we can take a fast path by getting - // directly from the content window to the browser without looping - // over all browsers. - if (!gMultiProcessBrowser) { - let browser = aWindow.QueryInterface(Ci.nsIInterfaceRequestor) - .getInterface(Ci.nsIWebNavigation) - .QueryInterface(Ci.nsIDocShell) - .chromeEventHandler; - return this.getTabForBrowser(browser); - } - for (let i = 0; i < this.browsers.length; i++) { // NB: We use contentWindowAsCPOW so that this code works both // for remote browsers as well. aWindow may be a CPOW. |