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

Side by Side Diff: src/plugin/PluginFilter.h

Issue 5163396739629056: Issue #1234 - Remove CString from ShouldBlock(), IsElementHidden() declarations (Closed)
Patch Set: Created Sept. 30, 2014, 5:37 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
« no previous file with comments | « src/plugin/AdblockPlusDomTraverser.cpp ('k') | src/plugin/PluginFilter.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #ifndef _PLUGIN_FILTER_H_ 1 #ifndef _PLUGIN_FILTER_H_
2 #define _PLUGIN_FILTER_H_ 2 #define _PLUGIN_FILTER_H_
3 3
4 4
5 #include "PluginTypedef.h" 5 #include "PluginTypedef.h"
6 #include <memory> 6 #include <memory>
7 7
8 enum CFilterElementHideAttrPos 8 enum CFilterElementHideAttrPos
9 { 9 {
10 POS_NONE = 0, STARTING, ENDING, ANYWHERE, EXACT 10 POS_NONE = 0, STARTING, ENDING, ANYWHERE, EXACT
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 155
156 public: 156 public:
157 157
158 CPluginFilter(const CString& dataPath = ""); 158 CPluginFilter(const CString& dataPath = "");
159 159
160 bool LoadHideFilters(std::vector<std::wstring> filters); 160 bool LoadHideFilters(std::vector<std::wstring> filters);
161 161
162 bool AddFilterElementHide(CString filter); 162 bool AddFilterElementHide(CString filter);
163 163
164 164
165 bool IsElementHidden(const CString& tag, IHTMLElement* pEl, const CString& dom ain, const CString& indent) const; 165 bool IsElementHidden(const std::wstring& tag, IHTMLElement* pEl, const std::ws tring& domain, const std::wstring& indent) const;
166 166
167 167
168 bool ShouldBlock(CString src, int contentType, const CString& domain, bool add Debug=false) const; 168 bool ShouldBlock(const std::wstring& src, int contentType, const std::wstring& domain, bool addDebug=false) const;
169 169
170 HANDLE hideFiltersLoadedEvent; 170 HANDLE hideFiltersLoadedEvent;
171 }; 171 };
172 172
173 173
174 #endif // _PLUGIN_FILTER_H_ 174 #endif // _PLUGIN_FILTER_H_
OLDNEW
« no previous file with comments | « src/plugin/AdblockPlusDomTraverser.cpp ('k') | src/plugin/PluginFilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld