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

Unified Diff: src/JsContext.cpp

Issue 6584950149087232: Issue 1280 - Update v8 (Closed)
Patch Set: get rid of auto and fix friends of JsValue Created Oct. 31, 2014, 4:10 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/JsContext.cpp
===================================================================
--- a/src/JsContext.cpp
+++ b/src/JsContext.cpp
@@ -19,6 +19,6 @@
AdblockPlus::JsContext::JsContext(const JsEnginePtr jsEngine)
: locker(jsEngine->isolate), handleScope(),
- contextScope(jsEngine->context)
+ contextScope(v8::Local<v8::Context>::New(jsEngine->isolate, jsEngine->context))
{
}

Powered by Google App Engine
This is Rietveld