| LEFT | RIGHT |
| 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 OwnedString Serialize() const; | 32 EMSCRIPTEN_KEEPALIVE OwnedString Serialize() const; |
| 23 }; | 33 }; |
| LEFT | RIGHT |