Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Unified Diff: Source/bindings/v8/Dictionary.cpp

Issue 23450039: Pass isolate to ScriptValue constructor (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove useless member Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/bindings/v8/Dictionary.cpp
diff --git a/Source/bindings/v8/Dictionary.cpp b/Source/bindings/v8/Dictionary.cpp
index ed31548d24e983bd609034ae9df7a9d76f0741bd..4009cc6392c726723e683a140d5067b275c2ed4c 100644
--- a/Source/bindings/v8/Dictionary.cpp
+++ b/Source/bindings/v8/Dictionary.cpp
@@ -181,7 +181,7 @@ bool Dictionary::get(const String& key, ScriptValue& value) const
if (!getKey(key, v8Value))
return false;
- value = ScriptValue(v8Value);
+ value = ScriptValue(v8Value, m_isolate);
return true;
}

Powered by Google App Engine
This is Rietveld 408576698