OLD | NEW |
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 Loading... |
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 |
OLD | NEW |