Title: [113374] trunk/Source/WebCore
Revision
113374
Author
[email protected]
Date
2012-04-05 13:45:16 -0700 (Thu, 05 Apr 2012)

Log Message

Rebaseline binding tests after r113272.

* bindings/scripts/test/V8/V8TestInterface.cpp:
(WebCore::V8TestInterface::constructorCallback):
* bindings/scripts/test/V8/V8TestNamedConstructor.cpp:
(WebCore::V8TestNamedConstructorConstructorCallback):
* bindings/scripts/test/V8/V8TestObj.cpp:
(WebCore::V8TestObj::constructorCallback):
* bindings/scripts/test/V8/V8TestSerializedScriptValueInterface.cpp:
(WebCore::V8TestSerializedScriptValueInterface::constructorCallback):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (113373 => 113374)


--- trunk/Source/WebCore/ChangeLog	2012-04-05 20:44:11 UTC (rev 113373)
+++ trunk/Source/WebCore/ChangeLog	2012-04-05 20:45:16 UTC (rev 113374)
@@ -1,3 +1,16 @@
+2012-04-05  Adam Klein  <[email protected]>
+
+        Rebaseline binding tests after r113272.
+
+        * bindings/scripts/test/V8/V8TestInterface.cpp:
+        (WebCore::V8TestInterface::constructorCallback):
+        * bindings/scripts/test/V8/V8TestNamedConstructor.cpp:
+        (WebCore::V8TestNamedConstructorConstructorCallback):
+        * bindings/scripts/test/V8/V8TestObj.cpp:
+        (WebCore::V8TestObj::constructorCallback):
+        * bindings/scripts/test/V8/V8TestSerializedScriptValueInterface.cpp:
+        (WebCore::V8TestSerializedScriptValueInterface::constructorCallback):
+
 2012-04-05  Stephen White  <[email protected]>
 
         [chromium] Drawing an accelerated canvas onto itself is slow.

Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestInterface.cpp (113373 => 113374)


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestInterface.cpp	2012-04-05 20:44:11 UTC (rev 113373)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestInterface.cpp	2012-04-05 20:45:16 UTC (rev 113374)
@@ -229,8 +229,7 @@
         goto fail;
 
     V8DOMWrapper::setDOMWrapper(wrapper, &info, impl.get());
-    impl->ref();
-    V8DOMWrapper::setJSWrapperForActiveDOMObject(impl.get(), v8::Persistent<v8::Object>::New(wrapper));
+    V8DOMWrapper::setJSWrapperForActiveDOMObject(impl.release(), v8::Persistent<v8::Object>::New(wrapper));
     return args.Holder();
   fail:
     return throwError(ec);

Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestNamedConstructor.cpp (113373 => 113374)


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestNamedConstructor.cpp	2012-04-05 20:44:11 UTC (rev 113373)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestNamedConstructor.cpp	2012-04-05 20:45:16 UTC (rev 113374)
@@ -77,8 +77,7 @@
         goto fail;
 
     V8DOMWrapper::setDOMWrapper(wrapper, &V8TestNamedConstructorConstructor::info, impl.get());
-    impl->ref();
-    V8DOMWrapper::setJSWrapperForActiveDOMObject(impl.get(), v8::Persistent<v8::Object>::New(wrapper));
+    V8DOMWrapper::setJSWrapperForActiveDOMObject(impl.release(), v8::Persistent<v8::Object>::New(wrapper));
     return args.Holder();
   fail:
     return throwError(ec);

Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp (113373 => 113374)


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp	2012-04-05 20:44:11 UTC (rev 113373)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp	2012-04-05 20:45:16 UTC (rev 113374)
@@ -2018,8 +2018,7 @@
     v8::Handle<v8::Object> wrapper = args.Holder();
 
     V8DOMWrapper::setDOMWrapper(wrapper, &info, impl.get());
-    impl->ref();
-    V8DOMWrapper::setJSWrapperForDOMObject(impl.get(), v8::Persistent<v8::Object>::New(wrapper));
+    V8DOMWrapper::setJSWrapperForDOMObject(impl.release(), v8::Persistent<v8::Object>::New(wrapper));
     return args.Holder();
 }
 

Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestSerializedScriptValueInterface.cpp (113373 => 113374)


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestSerializedScriptValueInterface.cpp	2012-04-05 20:44:11 UTC (rev 113373)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestSerializedScriptValueInterface.cpp	2012-04-05 20:45:16 UTC (rev 113374)
@@ -218,8 +218,7 @@
     v8::Handle<v8::Object> wrapper = args.Holder();
 
     V8DOMWrapper::setDOMWrapper(wrapper, &info, impl.get());
-    impl->ref();
-    V8DOMWrapper::setJSWrapperForDOMObject(impl.get(), v8::Persistent<v8::Object>::New(wrapper));
+    V8DOMWrapper::setJSWrapperForDOMObject(impl.release(), v8::Persistent<v8::Object>::New(wrapper));
     return args.Holder();
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to