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

Side by Side Diff: compiled/RegExpFilter.h

Issue 29383799: Issue 4988 - [emscripten] Adjust API for Element Hiding Emulation filters (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore
Patch Set: Created March 14, 2017, 2:42 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 #pragma once 1 #pragma once
2 2
3 #include "Filter.h" 3 #include "Filter.h"
4 #include "ActiveFilter.h" 4 #include "ActiveFilter.h"
5 5
6 enum class TrippleState {YES, NO, ANY}; 6 enum class TrippleState {YES, NO, ANY};
7 7
8 struct RegExpFilterData 8 struct RegExpFilterData
9 { 9 {
10 mutable String::size_type mPatternStart; 10 mutable String::size_type mPatternStart;
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 RegExpFilterData mData; 83 RegExpFilterData mData;
84 84
85 DomainMap* GetDomains() const override; 85 DomainMap* GetDomains() const override;
86 SitekeySet* GetSitekeys() const override; 86 SitekeySet* GetSitekeys() const override;
87 public: 87 public:
88 explicit RegExpFilter(Type type, const String& text, const RegExpFilterData& d ata); 88 explicit RegExpFilter(Type type, const String& text, const RegExpFilterData& d ata);
89 ~RegExpFilter(); 89 ~RegExpFilter();
90 static Type Parse(DependentString& text, DependentString& error, 90 static Type Parse(DependentString& text, DependentString& error,
91 RegExpFilterData& data); 91 RegExpFilterData& data);
92 EMSCRIPTEN_KEEPALIVE static void InitJSTypes(); 92 EMSCRIPTEN_KEEPALIVE static void InitJSTypes();
93 static OwnedString RegExpFromSource(const String& source);
94 EMSCRIPTEN_KEEPALIVE bool Matches(const String& location, int typeMask, 93 EMSCRIPTEN_KEEPALIVE bool Matches(const String& location, int typeMask,
95 DependentString& docDomain, bool thirdParty, const String& sitekey) const; 94 DependentString& docDomain, bool thirdParty, const String& sitekey) const;
96 }; 95 };
OLDNEW

Powered by Google App Engine
This is Rietveld