Title: [164479] trunk/Source/WebCore
- Revision
- 164479
- Author
- [email protected]
- Date
- 2014-02-21 00:57:12 -0800 (Fri, 21 Feb 2014)
Log Message
Bindings tests rebaseline after r164473.
* bindings/scripts/test/ObjC/DOMTestObj.mm:
(-[DOMTestObj mutablePoint]):
(-[DOMTestObj immutablePoint]):
(-[DOMTestObj mutablePointFunction]):
(-[DOMTestObj immutablePointFunction]):
* bindings/scripts/test/ObjC/DOMTestTypedefs.mm:
(-[DOMTestTypedefs immutablePointFunction]):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (164478 => 164479)
--- trunk/Source/WebCore/ChangeLog 2014-02-21 08:29:52 UTC (rev 164478)
+++ trunk/Source/WebCore/ChangeLog 2014-02-21 08:57:12 UTC (rev 164479)
@@ -1,3 +1,15 @@
+2014-02-21 Ryosuke Niwa <[email protected]>
+
+ Bindings tests rebaseline after r164473.
+
+ * bindings/scripts/test/ObjC/DOMTestObj.mm:
+ (-[DOMTestObj mutablePoint]):
+ (-[DOMTestObj immutablePoint]):
+ (-[DOMTestObj mutablePointFunction]):
+ (-[DOMTestObj immutablePointFunction]):
+ * bindings/scripts/test/ObjC/DOMTestTypedefs.mm:
+ (-[DOMTestTypedefs immutablePointFunction]):
+
2014-02-21 Tim Horton <[email protected]>
Remove removed symbol from exports list.
Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestObj.mm (164478 => 164479)
--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestObj.mm 2014-02-21 08:29:52 UTC (rev 164478)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestObj.mm 2014-02-21 08:57:12 UTC (rev 164479)
@@ -53,7 +53,6 @@
#import "ObjCEventListener.h"
#import "SVGDocument.h"
#import "SVGPoint.h"
-#import "SVGStaticPropertyTearOff.h"
#import "SerializedScriptValue.h"
#import "TestEnumType.h"
#import "TestNode.h"
@@ -669,7 +668,7 @@
- (DOMSVGPoint *)mutablePoint
{
WebCore::JSMainThreadNullState state;
- return kit(WTF::getPtr(WebCore::SVGStaticPropertyTearOff<WebCore::TestObj, WebCore::SVGPoint>::create(IMPL, IMPL->mutablePoint(), &WebCore::TestObj::updateMutablePoint)));
+ return kit(WTF::getPtr(IMPL->mutablePoint()));
}
- (void)setMutablePoint:(DOMSVGPoint *)newMutablePoint
@@ -683,7 +682,7 @@
- (DOMSVGPoint *)immutablePoint
{
WebCore::JSMainThreadNullState state;
- return kit(WTF::getPtr(WebCore::SVGPropertyTearOff<WebCore::SVGPoint>::create(IMPL->immutablePoint())));
+ return kit(WTF::getPtr(IMPL->immutablePoint()));
}
- (void)setImmutablePoint:(DOMSVGPoint *)newImmutablePoint
@@ -1128,13 +1127,13 @@
- (DOMSVGPoint *)mutablePointFunction
{
WebCore::JSMainThreadNullState state;
- return kit(WTF::getPtr(WebCore::SVGPropertyTearOff<WebCore::SVGPoint>::create(IMPL->mutablePointFunction())));
+ return kit(WTF::getPtr(IMPL->mutablePointFunction()));
}
- (DOMSVGPoint *)immutablePointFunction
{
WebCore::JSMainThreadNullState state;
- return kit(WTF::getPtr(WebCore::SVGPropertyTearOff<WebCore::SVGPoint>::create(IMPL->immutablePointFunction())));
+ return kit(WTF::getPtr(IMPL->immutablePointFunction()));
}
- (void)orange
Modified: trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestTypedefs.mm (164478 => 164479)
--- trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestTypedefs.mm 2014-02-21 08:29:52 UTC (rev 164478)
+++ trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestTypedefs.mm 2014-02-21 08:57:12 UTC (rev 164479)
@@ -157,7 +157,7 @@
- (DOMSVGPoint *)immutablePointFunction
{
WebCore::JSMainThreadNullState state;
- return kit(WTF::getPtr(WebCore::SVGPropertyTearOff<WebCore::SVGPoint>::create(IMPL->immutablePointFunction())));
+ return kit(WTF::getPtr(IMPL->immutablePointFunction()));
}
- (void)methodWithException
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes