| 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 |
| 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 | |
| 18 "use strict"; | 21 "use strict"; |
| 19 | 22 |
| 20 importAll("filterClasses", this); | 23 importAll("filterClasses", this); |
| 21 importAll("subscriptionClasses", this); | 24 importAll("subscriptionClasses", this); |
| 22 importAll("matcher", this); | 25 importAll("matcher", this); |
| 23 importAll("filterStorage", this); | 26 importAll("filterStorage", this); |
| 24 importAll("filterNotifier", this); | 27 importAll("filterNotifier", this); |
| 25 importAll("elemHide", this); | 28 importAll("elemHide", this); |
| 26 importAll("prefs", this); | 29 importAll("prefs", this); |
| 27 importAll("utils", 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.
| |
| 28 | 31 |
| 29 function prepareFilterComponents(keepListeners) | 32 function prepareFilterComponents(keepListeners) |
| 30 { | 33 { |
| 31 FilterStorage.subscriptions = []; | 34 FilterStorage.subscriptions = []; |
| 32 FilterStorage.knownSubscriptions = Object.create(null); | 35 FilterStorage.knownSubscriptions = Object.create(null); |
| 33 Subscription.knownSubscriptions = Object.create(null); | 36 Subscription.knownSubscriptions = Object.create(null); |
| 34 Filter.knownFilters = Object.create(null); | 37 Filter.knownFilters = Object.create(null); |
| 35 | 38 |
| 36 defaultMatcher.clear(); | 39 defaultMatcher.clear(); |
| 37 ElemHide.clear(); | 40 ElemHide.clear(); |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 54 | 57 |
| 55 function restorePrefs() | 58 function restorePrefs() |
| 56 { | 59 { |
| 57 for (let pref in this._pbackup) | 60 for (let pref in this._pbackup) |
| 58 Prefs[pref] = this._pbackup[pref]; | 61 Prefs[pref] = this._pbackup[pref]; |
| 59 } | 62 } |
| 60 | 63 |
| 61 function executeFirstRunActions() | 64 function executeFirstRunActions() |
| 62 { | 65 { |
| 63 } | 66 } |
| OLD | NEW |