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 |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "../filter/Filter.h" | 21 #include "../filter/Filter.h" |
22 #include "../bindings/runtime.h" | 22 #include "../bindings/runtime.h" |
23 | 23 |
24 class UserDefinedSubscription : public Subscription | 24 class UserDefinedSubscription : public Subscription |
25 { | 25 { |
26 private: | 26 private: |
27 int mDefaults; | 27 int mDefaults; |
28 | 28 |
29 public: | 29 public: |
30 explicit UserDefinedSubscription(const String& id); | 30 explicit UserDefinedSubscription(const String& id); |
31 BINDINGS_EXPORTED bool IsDefaultFor(const Filter* filter) const; | 31 bool BINDINGS_EXPORTED IsDefaultFor(const Filter* filter) const; |
32 BINDINGS_EXPORTED void MakeDefaultFor(const Filter* filter); | 32 void BINDINGS_EXPORTED MakeDefaultFor(const Filter* filter); |
33 BINDINGS_EXPORTED bool IsGeneric() const | 33 bool BINDINGS_EXPORTED IsGeneric() const |
34 { | 34 { |
35 return mDefaults == 0; | 35 return mDefaults == 0; |
36 } | 36 } |
37 BINDINGS_EXPORTED void InsertFilterAt(Filter* filter, unsigned pos); | 37 void BINDINGS_EXPORTED InsertFilterAt(Filter* filter, unsigned pos); |
38 BINDINGS_EXPORTED bool RemoveFilterAt(unsigned pos); | 38 bool BINDINGS_EXPORTED RemoveFilterAt(unsigned pos); |
39 BINDINGS_EXPORTED OwnedString Serialize() const; | 39 OwnedString BINDINGS_EXPORTED Serialize() const; |
40 }; | 40 }; |
41 | 41 |
42 template<> | 42 template<> |
43 inline UserDefinedSubscription* Subscription::As<UserDefinedSubscription>() | 43 inline UserDefinedSubscription* Subscription::As<UserDefinedSubscription>() |
44 { | 44 { |
45 if (mType != Type::USERDEFINED) | 45 if (mType != Type::USERDEFINED) |
46 return nullptr; | 46 return nullptr; |
47 | 47 |
48 return static_cast<UserDefinedSubscription*>(this); | 48 return static_cast<UserDefinedSubscription*>(this); |
49 } | 49 } |
OLD | NEW |