Title: [201816] trunk/Source/WebCore
Revision
201816
Author
ryanhad...@apple.com
Date
2016-06-08 11:45:22 -0700 (Wed, 08 Jun 2016)

Log Message

Rebaseline bindings tests after r201808

Unreviewed test gardening.

* bindings/scripts/test/JS/JSTestGlobalObject.cpp:
(WebCore::JSTestGlobalObject::finishCreation):
* bindings/scripts/test/JS/JSTestGlobalObject.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (201815 => 201816)


--- trunk/Source/WebCore/ChangeLog	2016-06-08 18:37:13 UTC (rev 201815)
+++ trunk/Source/WebCore/ChangeLog	2016-06-08 18:45:22 UTC (rev 201816)
@@ -1,3 +1,13 @@
+2016-06-08  Ryan Haddad  <ryanhad...@apple.com>
+
+        Rebaseline bindings tests after r201808
+
+        Unreviewed test gardening.
+
+        * bindings/scripts/test/JS/JSTestGlobalObject.cpp:
+        (WebCore::JSTestGlobalObject::finishCreation):
+        * bindings/scripts/test/JS/JSTestGlobalObject.h:
+
 2016-06-08  Lucas Forschler  <lforsch...@apple.com>
 
         Teach cmake about libWebKitSystemInterfaceOSX10.12

Modified: trunk/Source/WebCore/bindings/scripts/test/JS/JSTestGlobalObject.cpp (201815 => 201816)


--- trunk/Source/WebCore/bindings/scripts/test/JS/JSTestGlobalObject.cpp	2016-06-08 18:37:13 UTC (rev 201815)
+++ trunk/Source/WebCore/bindings/scripts/test/JS/JSTestGlobalObject.cpp	2016-06-08 18:45:22 UTC (rev 201816)
@@ -115,9 +115,9 @@
 {
 }
 
-void JSTestGlobalObject::finishCreation(VM& vm)
+void JSTestGlobalObject::finishCreation(VM& vm, JSProxy* proxy)
 {
-    Base::finishCreation(vm);
+    Base::finishCreation(vm, proxy);
 
 #if ENABLE(TEST_FEATURE)
     if (RuntimeEnabledFeatures::sharedFeatures().testFeatureEnabled()) {

Modified: trunk/Source/WebCore/bindings/scripts/test/JS/JSTestGlobalObject.h (201815 => 201816)


--- trunk/Source/WebCore/bindings/scripts/test/JS/JSTestGlobalObject.h	2016-06-08 18:37:13 UTC (rev 201815)
+++ trunk/Source/WebCore/bindings/scripts/test/JS/JSTestGlobalObject.h	2016-06-08 18:45:22 UTC (rev 201816)
@@ -64,7 +64,7 @@
         ASSERT(inherits(info()));
     }
 
-    void finishCreation(JSC::VM&);
+    void finishCreation(JSC::VM&, JSC::JSProxy*);
 };
 
 class JSTestGlobalObjectOwner : public JSC::WeakHandleOwner {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to