| 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 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 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 |
| 32 // Chrome can't distinguish between OBJECT_SUBREQUEST and OBJECT requests. |
| 33 RegExpFilter.typeMap.OBJECT_SUBREQUEST = RegExpFilter.typeMap.OBJECT; |
| 31 | 34 |
| 32 function onBeforeRequestAsync(page, url, type, docDomain, | 35 function onBeforeRequestAsync(page, url, type, docDomain, |
| 33 thirdParty, sitekey, | 36 thirdParty, sitekey, |
| 34 specificOnly, filter) | 37 specificOnly, filter) |
| 35 { | 38 { |
| 36 if (filter) | 39 if (filter) |
| 37 FilterNotifier.emit("filter.hitCount", filter, 0, 0, page); | 40 FilterNotifier.emit("filter.hitCount", filter, 0, 0, page); |
| 38 | 41 |
| 39 if (devtools) | 42 if (devtools) |
| 40 devtools.logRequest( | 43 devtools.logRequest( |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 | 154 |
| 152 port.on("request.websocket", function(msg, sender) | 155 port.on("request.websocket", function(msg, sender) |
| 153 { | 156 { |
| 154 return ext.webRequest.onBeforeRequest._dispatch( | 157 return ext.webRequest.onBeforeRequest._dispatch( |
| 155 new URL(msg.url), | 158 new URL(msg.url), |
| 156 "WEBSOCKET", | 159 "WEBSOCKET", |
| 157 sender.page, | 160 sender.page, |
| 158 sender.frame | 161 sender.frame |
| 159 ).indexOf(false) != -1; | 162 ).indexOf(false) != -1; |
| 160 }); | 163 }); |
| LEFT | RIGHT |