Changeset 164479 in webkit
- Timestamp:
- Feb 21, 2014, 12:57:12 AM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r164478 r164479 1 2014-02-21 Ryosuke Niwa <rniwa@webkit.org> 2 3 Bindings tests rebaseline after r164473. 4 5 * bindings/scripts/test/ObjC/DOMTestObj.mm: 6 (-[DOMTestObj mutablePoint]): 7 (-[DOMTestObj immutablePoint]): 8 (-[DOMTestObj mutablePointFunction]): 9 (-[DOMTestObj immutablePointFunction]): 10 * bindings/scripts/test/ObjC/DOMTestTypedefs.mm: 11 (-[DOMTestTypedefs immutablePointFunction]): 12 1 13 2014-02-21 Tim Horton <timothy_horton@apple.com> 2 14 -
trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestObj.mm
r156808 r164479 54 54 #import "SVGDocument.h" 55 55 #import "SVGPoint.h" 56 #import "SVGStaticPropertyTearOff.h"57 56 #import "SerializedScriptValue.h" 58 57 #import "TestEnumType.h" … … 670 669 { 671 670 WebCore::JSMainThreadNullState state; 672 return kit(WTF::getPtr( WebCore::SVGStaticPropertyTearOff<WebCore::TestObj, WebCore::SVGPoint>::create(IMPL, IMPL->mutablePoint(), &WebCore::TestObj::updateMutablePoint)));671 return kit(WTF::getPtr(IMPL->mutablePoint())); 673 672 } 674 673 … … 684 683 { 685 684 WebCore::JSMainThreadNullState state; 686 return kit(WTF::getPtr( WebCore::SVGPropertyTearOff<WebCore::SVGPoint>::create(IMPL->immutablePoint())));685 return kit(WTF::getPtr(IMPL->immutablePoint())); 687 686 } 688 687 … … 1129 1128 { 1130 1129 WebCore::JSMainThreadNullState state; 1131 return kit(WTF::getPtr( WebCore::SVGPropertyTearOff<WebCore::SVGPoint>::create(IMPL->mutablePointFunction())));1130 return kit(WTF::getPtr(IMPL->mutablePointFunction())); 1132 1131 } 1133 1132 … … 1135 1134 { 1136 1135 WebCore::JSMainThreadNullState state; 1137 return kit(WTF::getPtr( WebCore::SVGPropertyTearOff<WebCore::SVGPoint>::create(IMPL->immutablePointFunction())));1136 return kit(WTF::getPtr(IMPL->immutablePointFunction())); 1138 1137 } 1139 1138 -
trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestTypedefs.mm
r156580 r164479 158 158 { 159 159 WebCore::JSMainThreadNullState state; 160 return kit(WTF::getPtr( WebCore::SVGPropertyTearOff<WebCore::SVGPoint>::create(IMPL->immutablePointFunction())));160 return kit(WTF::getPtr(IMPL->immutablePointFunction())); 161 161 } 162 162
Note:
See TracChangeset
for help on using the changeset viewer.