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-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 "use strict"; | 18 "use strict"; |
19 | 19 |
20 const {FilterStorage} = require("../adblockpluscore/lib/filterStorage"); | 20 const {filterStorage} = require("../adblockpluscore/lib/filterStorage"); |
21 const {Subscription} = require("../adblockpluscore/lib/subscriptionClasses"); | 21 const {Subscription} = require("../adblockpluscore/lib/subscriptionClasses"); |
22 const {Filter} = require("../adblockpluscore/lib/filterClasses"); | 22 const {Filter} = require("../adblockpluscore/lib/filterClasses"); |
23 const {defaultMatcher} = require("../adblockpluscore/lib/matcher"); | 23 const {defaultMatcher} = require("../adblockpluscore/lib/matcher"); |
24 const {ElemHide} = require("../adblockpluscore/lib/elemHide"); | 24 const {ElemHide} = require("../adblockpluscore/lib/elemHide"); |
25 const {Prefs} = require("../lib/prefs"); | 25 const {Prefs} = require("../lib/prefs"); |
26 | 26 |
27 function prepareFilterComponents(keepListeners) | 27 function prepareFilterComponents(keepListeners) |
28 { | 28 { |
29 FilterStorage.subscriptions = []; | 29 filterStorage.subscriptions = []; |
Manish Jethani
2018/12/20 17:21:40
Regarding this, I notice that `filterStorage.subsc
kzar
2018/12/20 17:50:46
If it's new since the dependency update that `filt
Jon Sonesen
2018/12/20 18:22:14
I am actually working on this, I had noticed it as
| |
30 FilterStorage.knownSubscriptions = Object.create(null); | 30 filterStorage.knownSubscriptions = Object.create(null); |
31 Subscription.knownSubscriptions = Object.create(null); | 31 Subscription.knownSubscriptions = Object.create(null); |
32 Filter.knownFilters = Object.create(null); | 32 Filter.knownFilters = Object.create(null); |
33 | 33 |
34 defaultMatcher.clear(); | 34 defaultMatcher.clear(); |
35 ElemHide.clear(); | 35 ElemHide.clear(); |
36 } | 36 } |
37 | 37 |
38 function restoreFilterComponents() | 38 function restoreFilterComponents() |
39 { | 39 { |
40 } | 40 } |
41 | 41 |
42 function executeFirstRunActions() | 42 function executeFirstRunActions() |
43 { | 43 { |
44 } | 44 } |
OLD | NEW |