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

Side by Side Diff: include/AdblockPlus/FilterEngine.h

Issue 10187046: Rationalize preprocessor guard variable names (Closed)
Patch Set: Created April 29, 2013, 9:33 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
OLDNEW
1 #ifndef ADBLOCKPLUS_FILTER_ENGINE_H 1 #ifndef ADBLOCK_PLUS_FILTER_ENGINE_H
2 #define ADBLOCKPLUS_FILTER_ENGINE_H 2 #define ADBLOCK_PLUS_FILTER_ENGINE_H
3 3
4 #include <vector> 4 #include <vector>
5 #include <map> 5 #include <map>
6 #include <string> 6 #include <string>
7 #include <AdblockPlus/JsEngine.h> 7 #include <AdblockPlus/JsEngine.h>
8 #include <AdblockPlus/JsValue.h> 8 #include <AdblockPlus/JsValue.h>
9 9
10 #include "tr1_memory.h" 10 #include "tr1_memory.h"
11 11
12 namespace AdblockPlus 12 namespace AdblockPlus
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 const std::string& contentType, 60 const std::string& contentType,
61 const std::string& documentUrl); 61 const std::string& documentUrl);
62 std::vector<std::string> GetElementHidingSelectors(const std::string& domain ) const; 62 std::vector<std::string> GetElementHidingSelectors(const std::string& domain ) const;
63 63
64 private: 64 private:
65 JsEnginePtr jsEngine; 65 JsEnginePtr jsEngine;
66 }; 66 };
67 } 67 }
68 68
69 #endif 69 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld