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