+2014-02-21 Ryosuke Niwa <rniwa@webkit.org>
+
+ 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 <timothy_horton@apple.com>
Remove removed symbol from exports list.
#import "ObjCEventListener.h"
#import "SVGDocument.h"
#import "SVGPoint.h"
-#import "SVGStaticPropertyTearOff.h"
#import "SerializedScriptValue.h"
#import "TestEnumType.h"
#import "TestNode.h"
- (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
- (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
- (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
- (DOMSVGPoint *)immutablePointFunction
{
WebCore::JSMainThreadNullState state;
- return kit(WTF::getPtr(WebCore::SVGPropertyTearOff<WebCore::SVGPoint>::create(IMPL->immutablePointFunction())));
+ return kit(WTF::getPtr(IMPL->immutablePointFunction()));
}
- (void)methodWithException