| OLD | NEW |
| 1 #ifndef ADBLOCK_PLUS_GLOBAL_JS_OBJECT_H | 1 #ifndef ADBLOCK_PLUS_GLOBAL_JS_OBJECT_H |
| 2 #define ADBLOCK_PLUS_GLOBAL_JS_OBJECT_H | 2 #define ADBLOCK_PLUS_GLOBAL_JS_OBJECT_H |
| 3 | 3 |
| 4 #include <v8.h> | 4 #include <v8.h> |
| 5 #include <AdblockPlus/JsEngine.h> |
| 5 | 6 |
| 6 namespace AdblockPlus | 7 namespace AdblockPlus |
| 7 { | 8 { |
| 8 class AppInfo; | 9 class AppInfo; |
| 9 class JsEngine; | 10 class JsEngine; |
| 10 | 11 |
| 11 namespace GlobalJsObject | 12 namespace GlobalJsObject |
| 12 { | 13 { |
| 13 JsValuePtr Setup(JsEngine& jsEngine, const AppInfo& appInfo, JsValuePtr obj)
; | 14 JsValuePtr Setup(JsEnginePtr jsEngine, const AppInfo& appInfo, JsValuePtr ob
j); |
| 14 } | 15 } |
| 15 } | 16 } |
| 16 | 17 |
| 17 #endif | 18 #endif |
| OLD | NEW |