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

Delta Between Two Patch Sets: compiled/subscription/UserDefinedSubscription.h

Issue 29385742: Issue 4127 - [emscripten] Convert subscription classes to C++ - Part 2 (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore
Left Patch Set: Created March 16, 2017, 6:27 p.m.
Right Patch Set: Rebased Created April 13, 2017, 1:01 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « compiled/subscription/Subscription.cpp ('k') | compiled/subscription/UserDefinedSubscription.cpp » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-2017 eyeo GmbH
4 *
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
7 * published by the Free Software Foundation.
8 *
9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
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/>.
16 */
17
1 #pragma once 18 #pragma once
2 19
3 #include "Subscription.h" 20 #include "Subscription.h"
4 #include "../filter/Filter.h" 21 #include "../filter/Filter.h"
5 22
6 class UserDefinedSubscription : public Subscription 23 class UserDefinedSubscription : public Subscription
7 { 24 {
8 private: 25 private:
9 enum Defaults
10 {
11 WHITELIST = 1,
12 BLOCKING = 2,
13 ELEMHIDE = 4,
14 };
15 static int filterTypeToDefaults[Filter::Type::MAXTYPE + 1];
16 int mDefaults; 26 int mDefaults;
17 27
18 public: 28 public:
19 explicit UserDefinedSubscription(const String& id); 29 explicit UserDefinedSubscription(const String& id);
20 EMSCRIPTEN_KEEPALIVE bool IsDefaultFor(const Filter* filter) const; 30 EMSCRIPTEN_KEEPALIVE bool IsDefaultFor(const Filter* filter) const;
21 EMSCRIPTEN_KEEPALIVE void MakeDefaultFor(const Filter* filter); 31 EMSCRIPTEN_KEEPALIVE void MakeDefaultFor(const Filter* filter);
22 EMSCRIPTEN_KEEPALIVE void InsertFilterAt(Filter* filter, unsigned pos); 32 EMSCRIPTEN_KEEPALIVE void InsertFilterAt(Filter* filter, unsigned pos);
23 EMSCRIPTEN_KEEPALIVE bool RemoveFilterAt(unsigned pos); 33 EMSCRIPTEN_KEEPALIVE bool RemoveFilterAt(unsigned pos);
24 EMSCRIPTEN_KEEPALIVE OwnedString Serialize() const; 34 EMSCRIPTEN_KEEPALIVE OwnedString Serialize() const;
25 }; 35 };
LEFTRIGHT

Powered by Google App Engine
This is Rietveld