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-present eyeo GmbH | 3 * Copyright (C) 2006-present 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 /* globals require */ | 18 /* globals require */ |
19 | 19 |
20 "use strict"; | 20 "use strict"; |
21 | 21 |
22 (function(global) | 22 (function(global) |
23 { | 23 { |
24 let ext = global.ext || require("ext_background"); | |
25 | |
26 const {port} = require("messaging"); | 24 const {port} = require("messaging"); |
27 const {Prefs} = require("prefs"); | 25 const {Prefs} = require("prefs"); |
28 const {Utils} = require("utils"); | 26 const {Utils} = require("utils"); |
29 const {FilterStorage} = require("filterStorage"); | 27 const {FilterStorage} = require("filterStorage"); |
30 const {FilterNotifier} = require("filterNotifier"); | 28 const {FilterNotifier} = require("filterNotifier"); |
31 const {defaultMatcher} = require("matcher"); | 29 const {defaultMatcher} = require("matcher"); |
32 const {ElemHideEmulation} = require("elemHideEmulation"); | 30 const {ElemHideEmulation} = require("elemHideEmulation"); |
33 const {Notification: NotificationStorage} = require("notification"); | 31 const {Notification: NotificationStorage} = require("notification"); |
34 | 32 |
35 const {Filter, BlockingFilter, RegExpFilter} = require("filterClasses"); | 33 const {Filter, BlockingFilter, RegExpFilter} = require("filterClasses"); |
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 if (message.url) | 423 if (message.url) |
426 subscriptions = [Subscription.fromURL(message.url)]; | 424 subscriptions = [Subscription.fromURL(message.url)]; |
427 | 425 |
428 for (let subscription of subscriptions) | 426 for (let subscription of subscriptions) |
429 { | 427 { |
430 if (subscription instanceof DownloadableSubscription) | 428 if (subscription instanceof DownloadableSubscription) |
431 Synchronizer.execute(subscription, true); | 429 Synchronizer.execute(subscription, true); |
432 } | 430 } |
433 }); | 431 }); |
434 })(this); | 432 })(this); |
OLD | NEW |