Index: compiled/filter/ElemHideBase.h |
=================================================================== |
--- a/compiled/filter/ElemHideBase.h |
+++ b/compiled/filter/ElemHideBase.h |
@@ -58,17 +58,18 @@ |
class ElemHideBase : public ActiveFilter |
{ |
protected: |
ElemHideData mData; |
public: |
static constexpr Type classType = Type::ELEMHIDEBASE; |
explicit ElemHideBase(Type type, const String& text, const ElemHideData& data); |
- static Type Parse(DependentString& text, ElemHideData& data); |
+ static Type Parse(DependentString& text, ElemHideData& data, bool& needConversion); |
sergei
2018/02/12 12:53:20
Perhaps it makes sense just in case to add a comme
hub
2018/02/12 18:14:40
Instead I'll set it to false in there.
|
+ static DependentString ConvertFilter(String& text, String::size_type& at); |
OwnedString BINDINGS_EXPORTED GetSelector() const; |
OwnedString BINDINGS_EXPORTED GetSelectorDomain() const; |
}; |
typedef intrusive_ptr<ElemHideBase> ElemHideBasePtr; |
ABP_NS_END |