Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: compiled/FilterNotifier.h

Issue 29613616: Issue 6064 - Put C++ code into a configurable namespace (Closed) Base URL: https://github.com/adblockplus/adblockpluscore.git
Patch Set: rebase Created Feb. 6, 2018, 9:54 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « compiled/ElemHideEmulation.cpp ('k') | compiled/IntMap.h » ('j') | compiled/StringMap.h » ('J')

Powered by Google App Engine
This is Rietveld