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

Unified Diff: compiled/filter/Filter.h

Issue 29556737: Issue 5141 - Convert filter match to C++ (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore/
Patch Set: Created Sept. 26, 2017, 9:34 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
@@ -51,11 +51,14 @@
const String& BINDINGS_EXPORTED GetText() const
{
return mText;
}
OwnedString BINDINGS_EXPORTED Serialize() const;
static Filter* BINDINGS_EXPORTED FromText(DependentString& text);
+
+ static const DependentString regexpRegExp;
+ static const DependentString optionsRegExp;
hub 2017/09/26 21:48:59 these RegExp where in Filter in the JS code. Maybe
sergei 2017/10/02 12:02:32 If they are not used anywhere else, then I would l
};
typedef intrusive_ptr<Filter> FilterPtr;

Powered by Google App Engine
This is Rietveld