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

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

Issue 8806015: Changes to support a second VM. (Closed) Base URL: svn://svn.chromium.org/dash/experimental/chrome/src/webkit-full
Patch Set: . Created 9 years 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/WebCore/bindings/v8/ScriptCallStackFactory.cpp
diff --git a/Source/WebCore/bindings/v8/ScriptCallStackFactory.cpp b/Source/WebCore/bindings/v8/ScriptCallStackFactory.cpp
index f417cd5a9614ed97fd2f1bdd37a977f35d9d68b1..ddcde96f5a5b2fd2bd0f2daa0682289bfa32cdf2 100644
--- a/Source/WebCore/bindings/v8/ScriptCallStackFactory.cpp
+++ b/Source/WebCore/bindings/v8/ScriptCallStackFactory.cpp
@@ -111,7 +111,7 @@ PassRefPtr<ScriptArguments> createScriptArguments(const v8::Arguments& v8argumen
for (int i = skipArgumentCount; i < v8arguments.Length(); ++i)
arguments.append(ScriptValue(v8arguments[i]));
- return ScriptArguments::create(state, arguments);
+ return JavaScriptArguments::create(state, arguments);
}
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698