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

Unified Diff: compiled/filter/Filter.h

Issue 29384812: Issue 4127 - [emscripten] Convert subscription classes to C++ - Part 1 (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore
Patch Set: Removed unnecessary raw buffer Created April 10, 2017, 6:27 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
Index: compiled/filter/Filter.h
===================================================================
--- a/compiled/filter/Filter.h
+++ b/compiled/filter/Filter.h
@@ -34,16 +34,17 @@ public:
UNKNOWN = 0,
INVALID = 1,
COMMENT = 2,
BLOCKING = 3,
WHITELIST = 4,
ELEMHIDE = 5,
ELEMHIDEEXCEPTION = 6,
ELEMHIDEEMULATION = 7,
+ MAXTYPE = 7
sergei 2017/04/12 12:04:33 I think that the name reflecting the number of val
Wladimir Palant 2017/04/13 13:04:40 Done.
};
explicit Filter(Type type, const String& text);
~Filter();
Type mType;
/* TODO

Powered by Google App Engine
This is Rietveld