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

Unified Diff: compiled/filter/ActiveFilter.h

Issue 29574591: Issue 5258 - Implement Filter::As<>() method to make working with filters easier from C++ code (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore
Patch Set: Removed unnecessary base class check Created Oct. 13, 2017, 4:57 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 | « no previous file | compiled/filter/BlockingFilter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiled/filter/ActiveFilter.h
===================================================================
--- a/compiled/filter/ActiveFilter.h
+++ b/compiled/filter/ActiveFilter.h
@@ -51,16 +51,17 @@ protected:
void AddSitekey(const String& sitekey) const;
virtual DomainMap* GetDomains() const;
virtual SitekeySet* GetSitekeys() const;
mutable std::unique_ptr<DomainMap> mDomains;
mutable std::unique_ptr<SitekeySet> mSitekeys;
private:
bool mIgnoreTrailingDot;
public:
+ static constexpr Type classType = Type::ACTIVE;
explicit ActiveFilter(Type type, const String& text, bool ignoreTrailingDot);
FILTER_PROPERTY(bool, mDisabled, FILTER_DISABLED, GetDisabled, SetDisabled);
FILTER_PROPERTY(unsigned int, mHitCount, FILTER_HITCOUNT,
GetHitCount, SetHitCount);
FILTER_PROPERTY(unsigned int, mLastHit, FILTER_LASTHIT,
GetLastHit, SetLastHit);
bool BINDINGS_EXPORTED IsActiveOnDomain(DependentString& docDomain,
const String& sitekey) const;
« no previous file with comments | « no previous file | compiled/filter/BlockingFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld