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-2017 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 /* global defaultMatcher, importAll, ElemHide, Filter, FilterStorage, Prefs, | |
19 Subscription */ | |
20 | |
21 "use strict"; | 18 "use strict"; |
22 | 19 |
23 importAll("filterClasses", this); | 20 const {FilterStorage} = require("filterStorage"); |
24 importAll("subscriptionClasses", this); | 21 const {Subscription} = require("subscriptionClasses"); |
25 importAll("matcher", this); | 22 const {Filter} = require("filterClasses"); |
26 importAll("filterStorage", this); | 23 const {defaultMatcher} = require("matcher"); |
27 importAll("filterNotifier", this); | 24 const {ElemHide} = require("elemHide"); |
28 importAll("elemHide", this); | 25 const {Prefs} = require("prefs"); |
29 importAll("prefs", this); | |
30 importAll("utils", this); | |
Wladimir Palant
2017/03/14 13:03:32
importAll is a serious hack and I am guilty of int
kzar
2017/03/15 04:57:54
Good point, Done.
| |
31 | 26 |
32 function prepareFilterComponents(keepListeners) | 27 function prepareFilterComponents(keepListeners) |
33 { | 28 { |
34 FilterStorage.subscriptions = []; | 29 FilterStorage.subscriptions = []; |
35 FilterStorage.knownSubscriptions = Object.create(null); | 30 FilterStorage.knownSubscriptions = Object.create(null); |
36 Subscription.knownSubscriptions = Object.create(null); | 31 Subscription.knownSubscriptions = Object.create(null); |
37 Filter.knownFilters = Object.create(null); | 32 Filter.knownFilters = Object.create(null); |
38 | 33 |
39 defaultMatcher.clear(); | 34 defaultMatcher.clear(); |
40 ElemHide.clear(); | 35 ElemHide.clear(); |
41 } | 36 } |
42 | 37 |
43 function restoreFilterComponents() | 38 function restoreFilterComponents() |
44 { | 39 { |
45 } | 40 } |
46 | 41 |
47 function preparePrefs() | |
48 { | |
49 this._pbackup = Object.create(null); | |
50 for (let pref in Prefs) | |
51 { | |
52 let value = Prefs[pref]; | |
53 this._pbackup[pref] = value; | |
54 } | |
55 Prefs.enabled = true; | |
56 } | |
57 | |
58 function restorePrefs() | |
59 { | |
60 for (let pref in this._pbackup) | |
61 Prefs[pref] = this._pbackup[pref]; | |
62 } | |
63 | |
64 function executeFirstRunActions() | 42 function executeFirstRunActions() |
65 { | 43 { |
66 } | 44 } |
LEFT | RIGHT |