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

Unified Diff: Source/WebCore/bindings/v8/JavaScriptCallFrame.cpp

Issue 12087054: Revert 140611 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1397/
Patch Set: Created 7 years, 11 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
« no previous file with comments | « no previous file | Source/WebCore/bindings/v8/NPV8Object.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/bindings/v8/JavaScriptCallFrame.cpp
===================================================================
--- Source/WebCore/bindings/v8/JavaScriptCallFrame.cpp (revision 141118)
+++ Source/WebCore/bindings/v8/JavaScriptCallFrame.cpp (working copy)
@@ -121,7 +121,7 @@
v8::Handle<v8::Value> JavaScriptCallFrame::evaluate(const String& expression)
{
v8::Handle<v8::Function> evalFunction = v8::Handle<v8::Function>::Cast(m_callFrame.get()->Get(v8::String::NewSymbol("evaluate")));
- v8::Handle<v8::Value> argv[] = { v8String(expression, m_debuggerContext->GetIsolate()) };
+ v8::Handle<v8::Value> argv[] = { deprecatedV8String(expression) };
return evalFunction->Call(m_callFrame.get(), 1, argv);
}
« no previous file with comments | « no previous file | Source/WebCore/bindings/v8/NPV8Object.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698