Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | |
3 * Copyright (C) 2006-present eyeo GmbH | |
4 * | |
5 * Adblock Plus is free software: you can redistribute it and/or modify | |
6 * it under the terms of the GNU General Public License version 3 as | |
7 * published by the Free Software Foundation. | |
8 * | |
9 * Adblock Plus is distributed in the hope that it will be useful, | |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 * GNU General Public License for more details. | |
13 * | |
14 * You should have received a copy of the GNU General Public License | |
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | |
16 */ | |
17 | |
18 "use strict"; | |
19 | |
20 // On Edge, the extension APIs are in the "browser" namespace, whereas on | |
21 // both Firefox and Chrome they're in the "chrome" namespace. Firefox has a | |
22 // "browser" namespace too, but it is slightly incompatible in that the | |
23 // implementation uses promises as a fallback in the absence of a callback | |
24 // parameter. Edge sometimes has a "chrome" namespace, but with no extension | |
25 // APIs. | |
26 // | |
27 // In order to make the same code run on all three platforms, we simply look | |
28 // for a "chrome" namespace with the extension APIs and assign it to the | |
Sebastian Noack
2017/10/10 23:07:43
The part about Firefox is inaccurate, both the "br
Sebastian Noack
2017/10/10 23:15:25
That is actually only true for the "browser" objec
Manish Jethani
2017/10/11 01:09:20
There are two issues with using browser directly o
Sebastian Noack
2017/10/11 01:40:05
Yes, that is why Dave and I were used to use brace
Manish Jethani
2017/10/11 10:59:19
Alright, let's use the browser object directly, it
Manish Jethani
2017/10/11 10:59:19
Acknowledged.
Manish Jethani
2017/10/11 18:36:11
I'm going through the APIs that we actually use an
Sebastian Noack
2017/10/13 02:59:49
It says that this inconsistency only exists in con
Manish Jethani
2017/10/13 04:27:31
Acknowledged.
| |
29 // "browser" namespace. | |
30 if (typeof chrome != "undefined" && "extension" in chrome) | |
Sebastian Noack
2017/10/10 23:07:43
I think we should just use the "browser" object wh
Manish Jethani
2017/10/11 10:59:18
Done.
| |
31 window.browser = chrome; | |
32 | |
33 // Workaround since HTMLCollection, NodeList, StyleSheetList, and CSSRuleList | |
34 // didn't have iterator support before Chrome 51. | |
35 // https://bugs.chromium.org/p/chromium/issues/detail?id=401699 | |
36 for (let object of [HTMLCollection, NodeList, StyleSheetList, CSSRuleList]) | |
37 { | |
38 if (!(Symbol.iterator in object.prototype)) | |
39 object.prototype[Symbol.iterator] = Array.prototype[Symbol.iterator]; | |
40 } | |
OLD | NEW |