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

Unified Diff: src/plugin/AdblockPlusClient.h

Issue 5115380229996544: Issue 1104 - Cannot uncheck Disable on website option in tool bar (Closed)
Patch Set: Created March 4, 2015, 12:24 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 | « src/engine/Main.cpp ('k') | src/plugin/AdblockPlusClient.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/plugin/AdblockPlusClient.h
diff --git a/src/plugin/AdblockPlusClient.h b/src/plugin/AdblockPlusClient.h
index cbb384bacb1de3fe654df9d4e42f974b8811ec69..b4da3a0c27e2ffab960cadbd303657770852c979 100644
--- a/src/plugin/AdblockPlusClient.h
+++ b/src/plugin/AdblockPlusClient.h
@@ -71,7 +71,15 @@ public:
bool ShouldBlock(const std::wstring& src, AdblockPlus::FilterEngine::ContentType contentType, const std::wstring& domain, bool addDebug=false);
bool IsElementHidden(const std::wstring& tag, IHTMLElement* pEl, const std::wstring& domain, const std::wstring& indent, CPluginFilter* filter);
- bool IsWhitelistedUrl(const std::wstring& url);
+ struct ExceptionFilter
Eric 2015/03/04 13:55:39 I am generally in favor of adding simple classes l
+ {
+ operator bool() const
+ {
+ return !filterText.empty();
+ }
+ std::string filterText;
+ };
+ ExceptionFilter IsWhitelistedUrl(const std::wstring& url);
Oleksandr 2015/03/05 07:35:27 How about: bool IsWhitelistedUrl(const std::wstri
bool IsElemhideWhitelistedOnDomain(const std::wstring& url);
bool Matches(const std::wstring& url, AdblockPlus::FilterEngine::ContentType contentType, const std::wstring& domain);
@@ -86,6 +94,7 @@ public:
std::vector<std::wstring> GetExceptionDomains();
void AddFilter(const std::wstring& text);
void RemoveFilter(const std::wstring& text);
+ void RemoveFilter(const std::string& text);
void SetPref(const std::wstring& name, const std::wstring& value);
void SetPref(const std::wstring& name, const int64_t& value);
void SetPref(const std::wstring& name, bool value);
« no previous file with comments | « src/engine/Main.cpp ('k') | src/plugin/AdblockPlusClient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld