Changeset 134582 in webkit


Ignore:
Timestamp:
Nov 14, 2012, 2:38:32 AM (13 years ago)
Author:
haraken@chromium.org
Message:

Unreviewed. Rebaselined run-bindings-tests results.

  • bindings/scripts/test/V8/V8TestOverloadedConstructors.cpp:

(WebCore::V8TestOverloadedConstructors::constructor1Callback):
(WebCore::V8TestOverloadedConstructors::constructor2Callback):
(WebCore::V8TestOverloadedConstructors::constructor3Callback):
(WebCore::V8TestOverloadedConstructors::constructor4Callback):
(WebCore::V8TestOverloadedConstructors::wrapSlow):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r134580 r134582  
     12012-11-14  Kentaro Hara  <haraken@chromium.org>
     2
     3        Unreviewed. Rebaselined run-bindings-tests results.
     4
     5        * bindings/scripts/test/V8/V8TestOverloadedConstructors.cpp:
     6        (WebCore::V8TestOverloadedConstructors::constructor1Callback):
     7        (WebCore::V8TestOverloadedConstructors::constructor2Callback):
     8        (WebCore::V8TestOverloadedConstructors::constructor3Callback):
     9        (WebCore::V8TestOverloadedConstructors::constructor4Callback):
     10        (WebCore::V8TestOverloadedConstructors::wrapSlow):
     11
    1122012-11-14  Anton Muhin  <antonm@chromium.org>
    213
  • trunk/Source/WebCore/bindings/scripts/test/V8/V8TestOverloadedConstructors.cpp

    r134489 r134582  
    5555    v8::Handle<v8::Object> wrapper = args.Holder();
    5656
    57     V8DOMWrapper::setDOMWrapper(wrapper, &info, impl.get());
    58     V8DOMWrapper::setJSWrapperForDOMObject(impl.release(), wrapper, args.GetIsolate());
     57    V8DOMWrapper::createDOMWrapper(impl.release(), &info, wrapper, args.GetIsolate());
    5958    return wrapper;
    6059}
     
    6968    v8::Handle<v8::Object> wrapper = args.Holder();
    7069
    71     V8DOMWrapper::setDOMWrapper(wrapper, &info, impl.get());
    72     V8DOMWrapper::setJSWrapperForDOMObject(impl.release(), wrapper, args.GetIsolate());
     70    V8DOMWrapper::createDOMWrapper(impl.release(), &info, wrapper, args.GetIsolate());
    7371    return wrapper;
    7472}
     
    8381    v8::Handle<v8::Object> wrapper = args.Holder();
    8482
    85     V8DOMWrapper::setDOMWrapper(wrapper, &info, impl.get());
    86     V8DOMWrapper::setJSWrapperForDOMObject(impl.release(), wrapper, args.GetIsolate());
     83    V8DOMWrapper::createDOMWrapper(impl.release(), &info, wrapper, args.GetIsolate());
    8784    return wrapper;
    8885}
     
    9794    v8::Handle<v8::Object> wrapper = args.Holder();
    9895
    99     V8DOMWrapper::setDOMWrapper(wrapper, &info, impl.get());
    100     V8DOMWrapper::setJSWrapperForDOMObject(impl.release(), wrapper, args.GetIsolate());
     96    V8DOMWrapper::createDOMWrapper(impl.release(), &info, wrapper, args.GetIsolate());
    10197    return wrapper;
    10298}
     
    184180
    185181    installPerContextProperties(wrapper, impl.get());
    186     v8::Persistent<v8::Object> wrapperHandle = V8DOMWrapper::setJSWrapperForDOMObject(impl, wrapper, isolate);
     182    v8::Persistent<v8::Object> wrapperHandle = V8DOMWrapper::createDOMWrapper(impl, &info, wrapper, isolate);
    187183    if (!hasDependentLifetime)
    188184        wrapperHandle.MarkIndependent();
Note: See TracChangeset for help on using the changeset viewer.