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

Side by Side Diff: compiled/subscription/UserDefinedSubscription.h

Issue 29426559: Issue 5137 - [emscripten] Added basic filter storage implementation (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore
Patch Set: Fixed bogus assert Created Aug. 31, 2017, 12:44 p.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
(...skipping 12 matching lines...) Expand all
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 BINDINGS_EXPORTED bool IsDefaultFor(const Filter* filter) const;
32 BINDINGS_EXPORTED void MakeDefaultFor(const Filter* filter); 32 BINDINGS_EXPORTED void MakeDefaultFor(const Filter* filter);
33 BINDINGS_EXPORTED bool IsGeneric() const
34 {
35 return mDefaults == 0;
36 }
33 BINDINGS_EXPORTED void InsertFilterAt(Filter* filter, unsigned pos); 37 BINDINGS_EXPORTED void InsertFilterAt(Filter* filter, unsigned pos);
34 BINDINGS_EXPORTED bool RemoveFilterAt(unsigned pos); 38 BINDINGS_EXPORTED bool RemoveFilterAt(unsigned pos);
35 BINDINGS_EXPORTED OwnedString Serialize() const; 39 BINDINGS_EXPORTED OwnedString Serialize() const;
36 }; 40 };
41
42 template<>
43 inline UserDefinedSubscription* Subscription::As<UserDefinedSubscription>()
44 {
45 if (mType != Type::USERDEFINED)
46 return nullptr;
47
48 return static_cast<UserDefinedSubscription*>(this);
49 }
OLDNEW
« no previous file with comments | « compiled/subscription/Subscription.cpp ('k') | compiled/subscription/UserDefinedSubscription.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld