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

Unified Diff: compiled/CSSPropertyFilter.h

Issue 29333474: Issue 4125 - [emscripten] Convert filter classes to C++ (Closed)
Patch Set: Merged filter parsing and normalization Created Feb. 4, 2016, 3:01 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/ActiveFilter.cpp ('k') | compiled/CSSPropertyFilter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiled/CSSPropertyFilter.h
===================================================================
new file mode 100644
--- /dev/null
+++ b/compiled/CSSPropertyFilter.h
@@ -0,0 +1,53 @@
+#ifndef ADBLOCK_PLUS_CSS_PROPERTY_FILTER_H
+#define ADBLOCK_PLUS_CSS_PROPERTY_FILTER_H
+
+#include <cstddef>
+
+#include "Filter.h"
+#include "ElemHideBase.h"
+
+struct CSSPropertyFilterData
+{
+ String::size_type mPrefixEnd;
+ String::size_type mRegexpStart;
+ String::size_type mRegexpEnd;
+ String::size_type mSuffixStart;
+
+ const String GetSelectorPrefix(const String& text,
+ String::size_type selectorStart) const
+ {
+ return String(text, selectorStart, mPrefixEnd - selectorStart);
+ }
+
+ const String GetRegExpSource(const String& text) const
+ {
+ return String(text, mRegexpStart, mRegexpEnd - mRegexpStart);
+ }
+
+ const String GetSelectorSuffix(const String& text) const
+ {
+ return String(text, mSuffixStart);
+ }
+};
+
+struct ElemHideData : ElemHideBaseData, CSSPropertyFilterData
+{
+};
+
+class CSSPropertyFilter: public ElemHideBase, protected CSSPropertyFilterData
+{
+public:
+ CSSPropertyFilter(const String& text, const ElemHideData& data);
+ Type GetType() const;
+ EMSCRIPTEN_KEEPALIVE String GetRegExpString() const;
+ EMSCRIPTEN_KEEPALIVE const String GetSelectorPrefix() const
+ {
+ return CSSPropertyFilterData::GetSelectorPrefix(mText, mSelectorStart);
+ }
+ EMSCRIPTEN_KEEPALIVE const String GetSelectorSuffix() const
+ {
+ return CSSPropertyFilterData::GetSelectorSuffix(mText);
+ }
+};
+
+#endif
« no previous file with comments | « compiled/ActiveFilter.cpp ('k') | compiled/CSSPropertyFilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld