diff options
Diffstat (limited to 'fxjs/fxjs_v8.h')
-rw-r--r-- | fxjs/fxjs_v8.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/fxjs/fxjs_v8.h b/fxjs/fxjs_v8.h index 0372ade9ce..851bdd5428 100644 --- a/fxjs/fxjs_v8.h +++ b/fxjs/fxjs_v8.h @@ -178,7 +178,6 @@ class CFXJS_Engine : public CJS_V8 { int Execute(const WideString& script, FXJSErr* perror); v8::Local<v8::Object> GetThisObj(); - v8::Local<v8::Object> NewFxDynamicObj(int nObjDefnID, bool bStatic = false); // Native object binding. @@ -189,10 +188,15 @@ class CFXJS_Engine : public CJS_V8 { void Error(const WideString& message); + v8::Local<v8::Context> GetV8Context() { + return v8::Local<v8::Context>::New(GetIsolate(), m_V8Context); + } + protected: CFXJS_Engine(); private: + v8::Global<v8::Context> m_V8Context; std::vector<v8::Global<v8::Object>*> m_StaticObjects; }; |