Changeset 164479 in webkit


Ignore:
Timestamp:
Feb 21, 2014, 12:57:12 AM (12 years ago)
Author:
rniwa@webkit.org
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]):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r164478 r164479  
     12014-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
    1132014-02-21  Tim Horton  <timothy_horton@apple.com>
    214
  • trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestObj.mm

    r156808 r164479  
    5454#import "SVGDocument.h"
    5555#import "SVGPoint.h"
    56 #import "SVGStaticPropertyTearOff.h"
    5756#import "SerializedScriptValue.h"
    5857#import "TestEnumType.h"
     
    670669{
    671670    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()));
    673672}
    674673
     
    684683{
    685684    WebCore::JSMainThreadNullState state;
    686     return kit(WTF::getPtr(WebCore::SVGPropertyTearOff<WebCore::SVGPoint>::create(IMPL->immutablePoint())));
     685    return kit(WTF::getPtr(IMPL->immutablePoint()));
    687686}
    688687
     
    11291128{
    11301129    WebCore::JSMainThreadNullState state;
    1131     return kit(WTF::getPtr(WebCore::SVGPropertyTearOff<WebCore::SVGPoint>::create(IMPL->mutablePointFunction())));
     1130    return kit(WTF::getPtr(IMPL->mutablePointFunction()));
    11321131}
    11331132
     
    11351134{
    11361135    WebCore::JSMainThreadNullState state;
    1137     return kit(WTF::getPtr(WebCore::SVGPropertyTearOff<WebCore::SVGPoint>::create(IMPL->immutablePointFunction())));
     1136    return kit(WTF::getPtr(IMPL->immutablePointFunction()));
    11381137}
    11391138
  • trunk/Source/WebCore/bindings/scripts/test/ObjC/DOMTestTypedefs.mm

    r156580 r164479  
    158158{
    159159    WebCore::JSMainThreadNullState state;
    160     return kit(WTF::getPtr(WebCore::SVGPropertyTearOff<WebCore::SVGPoint>::create(IMPL->immutablePointFunction())));
     160    return kit(WTF::getPtr(IMPL->immutablePointFunction()));
    161161}
    162162
Note: See TracChangeset for help on using the changeset viewer.