Left: | ||
Right: |
OLD | NEW |
---|---|
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 |
(...skipping 11 matching lines...) Expand all Loading... | |
22 let {Filter, RegExpFilter, BlockingFilter} = require("filterClasses"); | 22 let {Filter, RegExpFilter, BlockingFilter} = require("filterClasses"); |
23 let {Subscription} = require("subscriptionClasses"); | 23 let {Subscription} = require("subscriptionClasses"); |
24 let {defaultMatcher} = require("matcher"); | 24 let {defaultMatcher} = require("matcher"); |
25 let {FilterNotifier} = require("filterNotifier"); | 25 let {FilterNotifier} = require("filterNotifier"); |
26 let {Prefs} = require("prefs"); | 26 let {Prefs} = require("prefs"); |
27 let {checkWhitelisted, getKey} = require("whitelisting"); | 27 let {checkWhitelisted, getKey} = require("whitelisting"); |
28 let {stringifyURL, extractHostFromFrame, isThirdParty} = require("url"); | 28 let {stringifyURL, extractHostFromFrame, isThirdParty} = require("url"); |
29 let {port} = require("messaging"); | 29 let {port} = require("messaging"); |
30 let devtools = require("devtools"); | 30 let devtools = require("devtools"); |
31 | 31 |
32 ext.webRequest.getIndistinguishableTypes().forEach(types => | |
33 { | |
34 for (let i = 1; i < types.length; i++) | |
35 RegExpFilter.typeMap[types[i]] = RegExpFilter.typeMap[types[0]]; | |
36 }); | |
Wladimir Palant
2016/12/13 14:15:02
This code is still needed to deal with OBJECT and
kzar
2016/12/13 15:05:40
Done.
| |
37 | |
38 function onBeforeRequestAsync(page, url, type, docDomain, | 32 function onBeforeRequestAsync(page, url, type, docDomain, |
39 thirdParty, sitekey, | 33 thirdParty, sitekey, |
40 specificOnly, filter) | 34 specificOnly, filter) |
41 { | 35 { |
42 if (filter) | 36 if (filter) |
43 FilterNotifier.emit("filter.hitCount", filter, 0, 0, page); | 37 FilterNotifier.emit("filter.hitCount", filter, 0, 0, page); |
44 | 38 |
45 if (devtools) | 39 if (devtools) |
46 devtools.logRequest( | 40 devtools.logRequest( |
47 page, url, type, docDomain, | 41 page, url, type, docDomain, |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
157 | 151 |
158 port.on("request.websocket", function(msg, sender) | 152 port.on("request.websocket", function(msg, sender) |
159 { | 153 { |
160 return ext.webRequest.onBeforeRequest._dispatch( | 154 return ext.webRequest.onBeforeRequest._dispatch( |
161 new URL(msg.url), | 155 new URL(msg.url), |
162 "WEBSOCKET", | 156 "WEBSOCKET", |
163 sender.page, | 157 sender.page, |
164 sender.frame | 158 sender.frame |
165 ).indexOf(false) != -1; | 159 ).indexOf(false) != -1; |
166 }); | 160 }); |
OLD | NEW |