Title: [177734] trunk/Source/WebCore
- Revision
- 177734
- Author
- [email protected]
- Date
- 2014-12-25 02:03:14 -0800 (Thu, 25 Dec 2014)
Log Message
Rebaseline bindings tests after r177733.
* bindings/scripts/test/JS/JSTestCallback.h:
(WebCore::JSTestCallback::create):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (177733 => 177734)
--- trunk/Source/WebCore/ChangeLog 2014-12-25 07:50:20 UTC (rev 177733)
+++ trunk/Source/WebCore/ChangeLog 2014-12-25 10:03:14 UTC (rev 177734)
@@ -1,3 +1,10 @@
+2014-12-25 Andreas Kling <[email protected]>
+
+ Rebaseline bindings tests after r177733.
+
+ * bindings/scripts/test/JS/JSTestCallback.h:
+ (WebCore::JSTestCallback::create):
+
2014-12-24 Andreas Kling <[email protected]>
Convert more creator functions to return Ref instead of PassRefPtr.
Modified: trunk/Source/WebCore/bindings/scripts/test/JS/JSTestCallback.h (177733 => 177734)
--- trunk/Source/WebCore/bindings/scripts/test/JS/JSTestCallback.h 2014-12-25 07:50:20 UTC (rev 177733)
+++ trunk/Source/WebCore/bindings/scripts/test/JS/JSTestCallback.h 2014-12-25 10:03:14 UTC (rev 177734)
@@ -32,9 +32,9 @@
class JSTestCallback : public TestCallback, public ActiveDOMCallback {
public:
- static PassRefPtr<JSTestCallback> create(JSC::JSObject* callback, JSDOMGlobalObject* globalObject)
+ static Ref<JSTestCallback> create(JSC::JSObject* callback, JSDOMGlobalObject* globalObject)
{
- return adoptRef(new JSTestCallback(callback, globalObject));
+ return adoptRef(*new JSTestCallback(callback, globalObject));
}
virtual ScriptExecutionContext* scriptExecutionContext() const { return ContextDestructionObserver::scriptExecutionContext(); }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes