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

Side by Side Diff: include/AdblockPlus/JsEngine.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_JS_ENGINE_H 1 #ifndef ADBLOCK_PLUS_JS_ENGINE_H
2 #define ADBLOCKPLUS_JS_ENGINE_H 2 #define ADBLOCK_PLUS_JS_ENGINE_H
3 3
4 #include <stdexcept> 4 #include <stdexcept>
5 #include <stdint.h> 5 #include <stdint.h>
6 #include <string> 6 #include <string>
7 #include <v8.h> 7 #include <v8.h>
8 #include <AdblockPlus/AppInfo.h> 8 #include <AdblockPlus/AppInfo.h>
9 #include <AdblockPlus/ErrorCallback.h> 9 #include <AdblockPlus/ErrorCallback.h>
10 #include <AdblockPlus/FileSystem.h> 10 #include <AdblockPlus/FileSystem.h>
11 #include <AdblockPlus/JsValue.h> 11 #include <AdblockPlus/JsValue.h>
12 #include <AdblockPlus/WebRequest.h> 12 #include <AdblockPlus/WebRequest.h>
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 80
81 FileSystemPtr fileSystem; 81 FileSystemPtr fileSystem;
82 WebRequestPtr webRequest; 82 WebRequestPtr webRequest;
83 ErrorCallbackPtr errorCallback; 83 ErrorCallbackPtr errorCallback;
84 v8::Isolate* isolate; 84 v8::Isolate* isolate;
85 v8::Persistent<v8::Context> context; 85 v8::Persistent<v8::Context> context;
86 }; 86 };
87 } 87 }
88 88
89 #endif 89 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld