LEFT | RIGHT |
1 #pragma once | 1 #pragma once |
2 | 2 |
3 #include <cstddef> | 3 #include <cstddef> |
4 | 4 |
5 #include "ActiveFilter.h" | 5 #include "ActiveFilter.h" |
6 | 6 |
7 struct ElemHideBaseData | 7 struct ElemHideBaseData |
8 { | 8 { |
9 String::size_type mDomainsEnd; | 9 String::size_type mDomainsEnd; |
10 String::size_type mSelectorStart; | 10 String::size_type mSelectorStart; |
(...skipping 19 matching lines...) Expand all Loading... |
30 } | 30 } |
31 | 31 |
32 const DependentString GetSelector(const String& text) const | 32 const DependentString GetSelector(const String& text) const |
33 { | 33 { |
34 return DependentString(text, mSelectorStart); | 34 return DependentString(text, mSelectorStart); |
35 } | 35 } |
36 }; | 36 }; |
37 | 37 |
38 struct ElemHideData; | 38 struct ElemHideData; |
39 | 39 |
40 class ElemHideBase : public ActiveFilter, protected ElemHideBaseData | 40 class ElemHideBase : public ActiveFilter |
41 { | 41 { |
| 42 protected: |
| 43 ElemHideBaseData mData; |
42 public: | 44 public: |
43 ElemHideBase(const String& text, const ElemHideBaseData& data); | 45 explicit ElemHideBase(Type type, const String& text, const ElemHideBaseData& d
ata); |
44 static Type Parse(DependentString& text, ElemHideData& data); | 46 static Type Parse(DependentString& text, ElemHideData& data); |
45 | 47 |
46 EMSCRIPTEN_KEEPALIVE const DependentString GetSelector() const | 48 EMSCRIPTEN_KEEPALIVE const DependentString GetSelector() const |
47 { | 49 { |
48 return ElemHideBaseData::GetSelector(mText); | 50 return mData.GetSelector(mText); |
49 } | 51 } |
50 | 52 |
51 EMSCRIPTEN_KEEPALIVE OwnedString GetSelectorDomain() const; | 53 EMSCRIPTEN_KEEPALIVE OwnedString GetSelectorDomain() const; |
52 }; | 54 }; |
LEFT | RIGHT |