Title: [112167] trunk/Source/WebCore
- Revision
- 112167
- Author
- [email protected]
- Date
- 2012-03-26 16:05:29 -0700 (Mon, 26 Mar 2012)
Log Message
Update binding test output for V8 after r112163.
* 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 (112166 => 112167)
--- trunk/Source/WebCore/ChangeLog 2012-03-26 23:01:23 UTC (rev 112166)
+++ trunk/Source/WebCore/ChangeLog 2012-03-26 23:05:29 UTC (rev 112167)
@@ -1,3 +1,16 @@
+2012-03-26 Adam Klein <[email protected]>
+
+ Update binding test output for V8 after r112163.
+
+ * 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-03-26 Levi Weintraub <[email protected]>
Update localSelectionRect to return a LayoutRect
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestInterface.cpp (112166 => 112167)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestInterface.cpp 2012-03-26 23:01:23 UTC (rev 112166)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestInterface.cpp 2012-03-26 23:05:29 UTC (rev 112167)
@@ -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 (112166 => 112167)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestNamedConstructor.cpp 2012-03-26 23:01:23 UTC (rev 112166)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestNamedConstructor.cpp 2012-03-26 23:05:29 UTC (rev 112167)
@@ -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 (112166 => 112167)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp 2012-03-26 23:01:23 UTC (rev 112166)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp 2012-03-26 23:05:29 UTC (rev 112167)
@@ -2019,8 +2019,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 (112166 => 112167)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestSerializedScriptValueInterface.cpp 2012-03-26 23:01:23 UTC (rev 112166)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestSerializedScriptValueInterface.cpp 2012-03-26 23:05:29 UTC (rev 112167)
@@ -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