Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | |
3 * Copyright (C) 2006-2016 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 /** | |
19 * @fileOverview This is a dummy to provide a function needed by message | |
20 * responder. | |
21 */ | |
22 | |
23 "use strict"; | |
24 | |
25 let {Policy} = require("contentPolicy"); | |
26 let {RegExpFilter} = require("filterClasses"); | |
27 | |
28 exports.checkWhitelisted = function(page, frames, typeMask) | |
29 { | |
30 let match = | |
31 Policy.isFrameWhitelisted(frames, typeMask & RegExpFilter.typeMap.ELEMHIDE ); | |
32 if (match) | |
33 { | |
34 let [frameIndex, matchType, docDomain, thirdParty, location, filter] = match ; | |
35 if (matchType == "DOCUMENT" || matchType == "ELEMHIDE") | |
Thomas Greiner
2016/03/30 18:02:06
I noticed that this check doesn't exist in the ori
Wladimir Palant
2016/03/30 18:42:17
This function doesn't really offer the same functi
| |
36 return filter; | |
37 } | |
38 | |
39 return null; | |
40 }; | |
OLD | NEW |