Title: [163581] trunk/Source/WebCore
Revision
163581
Author
[email protected]
Date
2014-02-06 17:00:11 -0800 (Thu, 06 Feb 2014)

Log Message

Regenerate JSTestObj now that ScriptArguments moved. Generator knows what to do.

Rubber-stamped by Zalan Bujtas.

* bindings/scripts/test/JS/JSTestObj.cpp:
(WebCore::jsTestObjPrototypeFunctionWithScriptArgumentsAndCallStack):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (163580 => 163581)


--- trunk/Source/WebCore/ChangeLog	2014-02-07 00:58:51 UTC (rev 163580)
+++ trunk/Source/WebCore/ChangeLog	2014-02-07 01:00:11 UTC (rev 163581)
@@ -1,3 +1,12 @@
+2014-02-06  Joseph Pecoraro  <[email protected]>
+
+        Regenerate JSTestObj now that ScriptArguments moved. Generator knows what to do.
+
+        Rubber-stamped by Zalan Bujtas.
+
+        * bindings/scripts/test/JS/JSTestObj.cpp:
+        (WebCore::jsTestObjPrototypeFunctionWithScriptArgumentsAndCallStack):
+
 2014-02-04  Jeffrey Pfau  <[email protected]>
 
         Make adoption agency use the task queue

Modified: trunk/Source/WebCore/bindings/scripts/test/JS/JSTestObj.cpp (163580 => 163581)


--- trunk/Source/WebCore/bindings/scripts/test/JS/JSTestObj.cpp	2014-02-07 00:58:51 UTC (rev 163580)
+++ trunk/Source/WebCore/bindings/scripts/test/JS/JSTestObj.cpp	2014-02-07 01:00:11 UTC (rev 163581)
@@ -2728,7 +2728,7 @@
         return throwVMTypeError(exec);
     ASSERT_GC_OBJECT_INHERITS(castedThis, JSTestObj::info());
     TestObj& impl = castedThis->impl();
-    RefPtr<ScriptArguments> scriptArguments(createScriptArguments(exec, 0));
+    RefPtr<Inspector::ScriptArguments> scriptArguments(Inspector::createScriptArguments(exec, 0));
     impl.withScriptArgumentsAndCallStack(scriptArguments.release());
     return JSValue::encode(jsUndefined());
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to