| Index: src/JsEngine.cpp |
| =================================================================== |
| --- a/src/JsEngine.cpp |
| +++ b/src/JsEngine.cpp |
| @@ -55,9 +55,9 @@ |
| const v8::Locker locker(result->isolate); |
| const v8::HandleScope handleScope; |
| - result->context.reset(result->isolate, v8::Context::New()); |
| + result->context.reset(result->isolate, v8::Context::New(result->isolate)); |
| AdblockPlus::GlobalJsObject::Setup(result, appInfo, |
| - JsValuePtr(new JsValue(result, result->context->Global()))); |
| + JsValuePtr(new JsValue(result, v8::Local<v8::Context>::New(result->isolate, result->context)->Global()))); |
|
Wladimir Palant
2014/11/01 22:30:25
Why do you need to create a new handle for the con
sergei
2014/11/03 12:58:19
Not sure that I correctly understand what you mean
Felix Dahlke
2014/11/03 15:46:24
I see. Looked through the docs a bit, unfortunatel
Wladimir Palant
2014/11/03 18:06:33
I see, so v8::Persistent cannot be used as a handl
|
| return result; |
| } |