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

Unified Diff: compiled/subscription/UserDefinedSubscription.h

Issue 29384812: Issue 4127 - [emscripten] Convert subscription classes to C++ - Part 1 (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore
Patch Set: Fixed method names according to convention Created March 16, 2017, 6:26 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « compiled/subscription/Subscription.cpp ('k') | compiled/subscription/UserDefinedSubscription.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiled/subscription/UserDefinedSubscription.h
===================================================================
new file mode 100644
--- /dev/null
+++ b/compiled/subscription/UserDefinedSubscription.h
@@ -0,0 +1,23 @@
+#pragma once
+
+#include "Subscription.h"
+#include "../filter/Filter.h"
+
+class UserDefinedSubscription : public Subscription
+{
+private:
+ enum Defaults
+ {
+ WHITELIST = 1,
+ BLOCKING = 2,
+ ELEMHIDE = 4,
+ };
+ static int filterTypeToDefaults[Filter::Type::MAXTYPE + 1];
+ int mDefaults;
+
+public:
+ explicit UserDefinedSubscription(const String& id);
+ EMSCRIPTEN_KEEPALIVE bool IsDefaultFor(const Filter* filter) const;
+ EMSCRIPTEN_KEEPALIVE void MakeDefaultFor(const Filter* filter);
+ EMSCRIPTEN_KEEPALIVE OwnedString Serialize() const;
+};
« 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