Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-2016 Eyeo GmbH | 3 * Copyright (C) 2006-2016 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 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 | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
13 * | 13 * |
14 * You should have received a copy of the GNU General Public License | 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/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
16 */ | 16 */ |
17 | 17 |
18 "use strict"; | 18 "use strict"; |
19 | 19 |
20 let { | 20 const {RegExpFilter, |
Sebastian Noack
2017/01/11 16:20:41
I think I would prefer to wrap this line like this
wspee
2017/01/12 13:39:58
Done.
Sebastian Noack
2017/02/09 11:07:38
It seems you haven't changed that code. But since
wspee
2017/02/10 10:46:46
Done.
| |
21 RegExpFilter, | 21 WhitelistFilter, |
22 WhitelistFilter, | 22 ElemHideFilter, |
23 ElemHideFilter, | 23 ElemHideEmulationFilter} = require("filterClasses"); |
24 ElemHideEmulationFilter | 24 |
25 } = require("filterClasses"); | 25 const {SpecialSubscription} = require("subscriptionClasses"); |
26 | 26 const {FilterStorage} = require("filterStorage"); |
27 let {SpecialSubscription} = require("subscriptionClasses"); | 27 const {defaultMatcher} = require("matcher"); |
28 let {FilterStorage} = require("filterStorage"); | 28 const {FilterNotifier} = require("filterNotifier"); |
29 let {defaultMatcher} = require("matcher"); | 29 const {extractHostFromFrame} = require("url"); |
30 let {FilterNotifier} = require("filterNotifier"); | 30 const {port} = require("messaging"); |
31 let {extractHostFromFrame} = require("url"); | |
32 let {port} = require("messaging"); | |
33 | 31 |
34 const nonRequestTypes = ["DOCUMENT", "ELEMHIDE", "GENERICBLOCK", "GENERICHIDE"]; | 32 const nonRequestTypes = ["DOCUMENT", "ELEMHIDE", "GENERICBLOCK", "GENERICHIDE"]; |
35 | 33 |
36 // Mapping of inspected tabs to their devpanel page | 34 // Mapping of inspected tabs to their devpanel page |
37 // and recorded items. We can't use a PageMap here, | 35 // and recorded items. We can't use a PageMap here, |
38 // because data must persist after navigation/reload. | 36 // because data must persist after navigation/reload. |
39 let panels = Object.create(null); | 37 let panels = Object.create(null); |
40 | 38 |
41 function hasPanels() | 39 function hasPanels() |
42 { | 40 { |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
169 if (panel) | 167 if (panel) |
170 { | 168 { |
171 for (let subscription of FilterStorage.subscriptions) | 169 for (let subscription of FilterStorage.subscriptions) |
172 { | 170 { |
173 if (subscription.disabled) | 171 if (subscription.disabled) |
174 continue; | 172 continue; |
175 | 173 |
176 for (let filter of subscription.filters) | 174 for (let filter of subscription.filters) |
177 { | 175 { |
178 if (!(filter instanceof ElemHideFilter) && | 176 if (!(filter instanceof ElemHideFilter) && |
179 !(filter instanceof ElemHideEmulationFilter)) | 177 !(filter instanceof ElemHideEmulationFilter)) |
Sebastian Noack
2017/01/11 16:20:41
This logic could be slightly simplified (one less
wspee
2017/01/12 13:39:58
Done.
| |
180 continue; | 178 continue; |
181 if (selectors.indexOf(filter.selector) == -1) | 179 if (selectors.indexOf(filter.selector) == -1) |
182 continue; | 180 continue; |
183 if (!filter.isActiveOnDomain(docDomain)) | 181 if (!filter.isActiveOnDomain(docDomain)) |
184 continue; | 182 continue; |
185 | 183 |
186 addRecord(panel, {type: "ELEMHIDE", docDomain: docDomain}, filter); | 184 addRecord(panel, {type: "ELEMHIDE", docDomain: docDomain}, filter); |
187 } | 185 } |
188 } | 186 } |
189 } | 187 } |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
384 panels[inspectedTabId] = {port: port, records: []}; | 382 panels[inspectedTabId] = {port: port, records: []}; |
385 }); | 383 }); |
386 | 384 |
387 port.on("devtools.traceElemHide", (message, sender) => | 385 port.on("devtools.traceElemHide", (message, sender) => |
388 { | 386 { |
389 logHiddenElements( | 387 logHiddenElements( |
390 sender.page, message.selectors, | 388 sender.page, message.selectors, |
391 extractHostFromFrame(sender.frame) | 389 extractHostFromFrame(sender.frame) |
392 ); | 390 ); |
393 }); | 391 }); |
LEFT | RIGHT |