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

Delta Between Two Patch Sets: include/AdblockPlus/FilterEngine.h

Issue 10169005: Windows specific changes. All tests passing on Windows. (Closed)
Left Patch Set: Misscommunication fix Created April 9, 2013, 8:03 a.m.
Right Patch Set: Comments address. WIN32 in #ifdef and whitespace Created April 10, 2013, 7:55 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « MSVS/tests.vcxproj ('k') | src/GlobalJsObject.cpp » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 #ifndef ADBLOCKPLUS_FILTER_ENGINE_H 1 #ifndef ADBLOCKPLUS_FILTER_ENGINE_H
2 #define ADBLOCKPLUS_FILTER_ENGINE_H 2 #define ADBLOCKPLUS_FILTER_ENGINE_H
3 3
4 #include <vector> 4 #include <vector>
5 #include <map> 5 #include <map>
6 #include <string> 6 #include <string>
7 #ifdef _MSC_VER 7 #ifdef WIN32
Felix Dahlke 2013/04/10 07:34:01 I guess my comment got lost since the patch sets s
8 #include <memory> 8 #include <memory>
9 #else 9 #else
10 #include <tr1/memory> 10 #include <tr1/memory>
11 #endif 11 #endif
12 namespace AdblockPlus 12 namespace AdblockPlus
13 { 13 {
14 class JsEngine; 14 class JsEngine;
15 class FilterEngine; 15 class FilterEngine;
16 16
17 class JsObject 17 class JsObject
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 #if FILTER_ENGINE_STUBS 112 #if FILTER_ENGINE_STUBS
113 std::map<std::string, FilterPtr> knownFilters; 113 std::map<std::string, FilterPtr> knownFilters;
114 std::vector<FilterPtr> listedFilters; 114 std::vector<FilterPtr> listedFilters;
115 std::map<std::string, SubscriptionPtr> knownSubscriptions; 115 std::map<std::string, SubscriptionPtr> knownSubscriptions;
116 std::vector<SubscriptionPtr> listedSubscriptions; 116 std::vector<SubscriptionPtr> listedSubscriptions;
117 #endif 117 #endif
118 }; 118 };
119 } 119 }
120 120
121 #endif 121 #endif
LEFTRIGHT

Powered by Google App Engine
This is Rietveld