Index: Source/WebCore/bindings/js/ScriptCallStackFactory.cpp |
diff --git a/Source/WebCore/bindings/js/ScriptCallStackFactory.cpp b/Source/WebCore/bindings/js/ScriptCallStackFactory.cpp |
index a266449210d874dcc85f4c6ca264b44e807a44cf..dd31b5ac2d0413da337df1f0cc7fa236535aa321 100644 |
--- a/Source/WebCore/bindings/js/ScriptCallStackFactory.cpp |
+++ b/Source/WebCore/bindings/js/ScriptCallStackFactory.cpp |
@@ -89,7 +89,7 @@ PassRefPtr<ScriptArguments> createScriptArguments(JSC::ExecState* exec, unsigned |
size_t argumentCount = exec->argumentCount(); |
for (size_t i = skipArgumentCount; i < argumentCount; ++i) |
arguments.append(ScriptValue(exec->globalData(), exec->argument(i))); |
- return ScriptArguments::create(exec, arguments); |
+ return JavaScriptArguments::create(exec, arguments); |
} |
} // namespace WebCore |