⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 118651 in webkit


Ignore:
Timestamp:
May 28, 2012, 12:48:23 AM (14 years ago)
Author:
haraken@chromium.org
Message:

Unreviewed. Rebaselined run-binding-tests results.

  • bindings/scripts/test/JS/JSTestActiveDOMObject.cpp:

(WebCore::JSTestActiveDOMObjectOwner::finalize):

  • bindings/scripts/test/JS/JSTestCustomNamedGetter.cpp:

(WebCore::JSTestCustomNamedGetterOwner::finalize):

  • bindings/scripts/test/JS/JSTestEventConstructor.cpp:

(WebCore::JSTestEventConstructorOwner::finalize):

  • bindings/scripts/test/JS/JSTestEventTarget.cpp:

(WebCore::JSTestEventTargetOwner::finalize):

  • bindings/scripts/test/JS/JSTestException.cpp:

(WebCore::JSTestExceptionOwner::finalize):

  • bindings/scripts/test/JS/JSTestInterface.cpp:

(WebCore::JSTestInterfaceOwner::finalize):

  • bindings/scripts/test/JS/JSTestMediaQueryListListener.cpp:

(WebCore::JSTestMediaQueryListListenerOwner::finalize):

  • bindings/scripts/test/JS/JSTestNamedConstructor.cpp:

(WebCore::JSTestNamedConstructorOwner::finalize):

  • bindings/scripts/test/JS/JSTestObj.cpp:

(WebCore::JSTestObjOwner::finalize):

  • bindings/scripts/test/JS/JSTestSerializedScriptValueInterface.cpp:

(WebCore::JSTestSerializedScriptValueInterfaceOwner::finalize):

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

(WebCore::V8TestObj::installPerContextProperties):

Location:
trunk/Source/WebCore
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r118650 r118651  
     12012-05-28  Kentaro Hara  <haraken@chromium.org>
     2
     3        Unreviewed. Rebaselined run-binding-tests results.
     4
     5        * bindings/scripts/test/JS/JSTestActiveDOMObject.cpp:
     6        (WebCore::JSTestActiveDOMObjectOwner::finalize):
     7        * bindings/scripts/test/JS/JSTestCustomNamedGetter.cpp:
     8        (WebCore::JSTestCustomNamedGetterOwner::finalize):
     9        * bindings/scripts/test/JS/JSTestEventConstructor.cpp:
     10        (WebCore::JSTestEventConstructorOwner::finalize):
     11        * bindings/scripts/test/JS/JSTestEventTarget.cpp:
     12        (WebCore::JSTestEventTargetOwner::finalize):
     13        * bindings/scripts/test/JS/JSTestException.cpp:
     14        (WebCore::JSTestExceptionOwner::finalize):
     15        * bindings/scripts/test/JS/JSTestInterface.cpp:
     16        (WebCore::JSTestInterfaceOwner::finalize):
     17        * bindings/scripts/test/JS/JSTestMediaQueryListListener.cpp:
     18        (WebCore::JSTestMediaQueryListListenerOwner::finalize):
     19        * bindings/scripts/test/JS/JSTestNamedConstructor.cpp:
     20        (WebCore::JSTestNamedConstructorOwner::finalize):
     21        * bindings/scripts/test/JS/JSTestObj.cpp:
     22        (WebCore::JSTestObjOwner::finalize):
     23        * bindings/scripts/test/JS/JSTestSerializedScriptValueInterface.cpp:
     24        (WebCore::JSTestSerializedScriptValueInterfaceOwner::finalize):
     25        * bindings/scripts/test/V8/V8TestObj.cpp:
     26        (WebCore::V8TestObj::installPerContextProperties):
     27
    1282012-05-28  Darin Adler  <darin@apple.com>
    229
  • trunk/Source/WebCore/bindings/scripts/test/JS/JSTestActiveDOMObject.cpp

    r118616 r118651  
    230230void JSTestActiveDOMObjectOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context)
    231231{
    232     JSTestActiveDOMObject* jsTestActiveDOMObject = static_cast<JSTestActiveDOMObject*>(handle.get().asCell());
     232    JSTestActiveDOMObject* jsTestActiveDOMObject = jsCast<JSTestActiveDOMObject*>(handle.get().asCell());
    233233    DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context);
    234234    uncacheWrapper(world, jsTestActiveDOMObject->impl(), jsTestActiveDOMObject);
  • trunk/Source/WebCore/bindings/scripts/test/JS/JSTestCustomNamedGetter.cpp

    r118616 r118651  
    203203void JSTestCustomNamedGetterOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context)
    204204{
    205     JSTestCustomNamedGetter* jsTestCustomNamedGetter = static_cast<JSTestCustomNamedGetter*>(handle.get().asCell());
     205    JSTestCustomNamedGetter* jsTestCustomNamedGetter = jsCast<JSTestCustomNamedGetter*>(handle.get().asCell());
    206206    DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context);
    207207    uncacheWrapper(world, jsTestCustomNamedGetter->impl(), jsTestCustomNamedGetter);
  • trunk/Source/WebCore/bindings/scripts/test/JS/JSTestEventConstructor.cpp

    r118616 r118651  
    230230void JSTestEventConstructorOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context)
    231231{
    232     JSTestEventConstructor* jsTestEventConstructor = static_cast<JSTestEventConstructor*>(handle.get().asCell());
     232    JSTestEventConstructor* jsTestEventConstructor = jsCast<JSTestEventConstructor*>(handle.get().asCell());
    233233    DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context);
    234234    uncacheWrapper(world, jsTestEventConstructor->impl(), jsTestEventConstructor);
  • trunk/Source/WebCore/bindings/scripts/test/JS/JSTestEventTarget.cpp

    r118616 r118651  
    331331void JSTestEventTargetOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context)
    332332{
    333     JSTestEventTarget* jsTestEventTarget = static_cast<JSTestEventTarget*>(handle.get().asCell());
     333    JSTestEventTarget* jsTestEventTarget = jsCast<JSTestEventTarget*>(handle.get().asCell());
    334334    DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context);
    335335    uncacheWrapper(world, jsTestEventTarget->impl(), jsTestEventTarget);
  • trunk/Source/WebCore/bindings/scripts/test/JS/JSTestException.cpp

    r118616 r118651  
    172172void JSTestExceptionOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context)
    173173{
    174     JSTestException* jsTestException = static_cast<JSTestException*>(handle.get().asCell());
     174    JSTestException* jsTestException = jsCast<JSTestException*>(handle.get().asCell());
    175175    DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context);
    176176    uncacheWrapper(world, jsTestException->impl(), jsTestException);
  • trunk/Source/WebCore/bindings/scripts/test/JS/JSTestInterface.cpp

    r118616 r118651  
    436436void JSTestInterfaceOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context)
    437437{
    438     JSTestInterface* jsTestInterface = static_cast<JSTestInterface*>(handle.get().asCell());
     438    JSTestInterface* jsTestInterface = jsCast<JSTestInterface*>(handle.get().asCell());
    439439    DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context);
    440440    uncacheWrapper(world, jsTestInterface->impl(), jsTestInterface);
  • trunk/Source/WebCore/bindings/scripts/test/JS/JSTestMediaQueryListListener.cpp

    r118616 r118651  
    193193void JSTestMediaQueryListListenerOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context)
    194194{
    195     JSTestMediaQueryListListener* jsTestMediaQueryListListener = static_cast<JSTestMediaQueryListListener*>(handle.get().asCell());
     195    JSTestMediaQueryListListener* jsTestMediaQueryListListener = jsCast<JSTestMediaQueryListListener*>(handle.get().asCell());
    196196    DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context);
    197197    uncacheWrapper(world, jsTestMediaQueryListListener->impl(), jsTestMediaQueryListListener);
  • trunk/Source/WebCore/bindings/scripts/test/JS/JSTestNamedConstructor.cpp

    r118616 r118651  
    207207void JSTestNamedConstructorOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context)
    208208{
    209     JSTestNamedConstructor* jsTestNamedConstructor = static_cast<JSTestNamedConstructor*>(handle.get().asCell());
     209    JSTestNamedConstructor* jsTestNamedConstructor = jsCast<JSTestNamedConstructor*>(handle.get().asCell());
    210210    DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context);
    211211    uncacheWrapper(world, jsTestNamedConstructor->impl(), jsTestNamedConstructor);
  • trunk/Source/WebCore/bindings/scripts/test/JS/JSTestObj.cpp

    r118616 r118651  
    28112811void JSTestObjOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context)
    28122812{
    2813     JSTestObj* jsTestObj = static_cast<JSTestObj*>(handle.get().asCell());
     2813    JSTestObj* jsTestObj = jsCast<JSTestObj*>(handle.get().asCell());
    28142814    DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context);
    28152815    uncacheWrapper(world, jsTestObj->impl(), jsTestObj);
  • trunk/Source/WebCore/bindings/scripts/test/JS/JSTestSerializedScriptValueInterface.cpp

    r118616 r118651  
    381381void JSTestSerializedScriptValueInterfaceOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context)
    382382{
    383     JSTestSerializedScriptValueInterface* jsTestSerializedScriptValueInterface = static_cast<JSTestSerializedScriptValueInterface*>(handle.get().asCell());
     383    JSTestSerializedScriptValueInterface* jsTestSerializedScriptValueInterface = jsCast<JSTestSerializedScriptValueInterface*>(handle.get().asCell());
    384384    DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context);
    385385    uncacheWrapper(world, jsTestSerializedScriptValueInterface->impl(), jsTestSerializedScriptValueInterface);
  • trunk/Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp

    r118274 r118651  
    24062406{
    24072407    v8::Local<v8::Object> proto = v8::Local<v8::Object>::Cast(instance->GetPrototype());
     2408    // When building QtWebkit with V8 this variable is unused when none of the features are enabled.
     2409    UNUSED_PARAM(proto);
    24082410    if (ContextEnabledFeatures::enabledAtContextAttr1Enabled(impl)) {
    24092411        static const BatchedAttribute attrData =\
Note: See TracChangeset for help on using the changeset viewer.