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 #pragma once | 18 #pragma once |
19 | 19 |
20 #include <cstdio> | 20 #include <cstdio> |
21 | 21 |
| 22 #include "base.h" |
22 #include "library.h" | 23 #include "library.h" |
23 #include "String.h" | 24 #include "String.h" |
24 | 25 |
| 26 ABP_NS_BEGIN |
| 27 |
25 class Filter; | 28 class Filter; |
26 class Subscription; | 29 class Subscription; |
27 | 30 |
28 namespace FilterNotifier | 31 namespace FilterNotifier |
29 { | 32 { |
30 enum class Topic | 33 enum class Topic |
31 { | 34 { |
32 NONE, | 35 NONE, |
33 FILTER_ADDED, | 36 FILTER_ADDED, |
34 FILTER_REMOVED, | 37 FILTER_REMOVED, |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 Subscription* subscription = nullptr, unsigned int position = 0) | 78 Subscription* subscription = nullptr, unsigned int position = 0) |
76 { | 79 { |
77 JSNotifyFilterChange(topic, filter, subscription, position); | 80 JSNotifyFilterChange(topic, filter, subscription, position); |
78 } | 81 } |
79 | 82 |
80 inline void SubscriptionChange(Topic topic, Subscription& subscription) | 83 inline void SubscriptionChange(Topic topic, Subscription& subscription) |
81 { | 84 { |
82 JSNotifySubscriptionChange(topic, subscription); | 85 JSNotifySubscriptionChange(topic, subscription); |
83 } | 86 } |
84 } | 87 } |
| 88 |
| 89 ABP_NS_END |
OLD | NEW |