Changeset 118651 in webkit
- Timestamp:
- May 28, 2012, 12:48:23 AM (14 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 12 edited
-
ChangeLog (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestActiveDOMObject.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestCustomNamedGetter.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestEventConstructor.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestEventTarget.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestException.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestInterface.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestMediaQueryListListener.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestNamedConstructor.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestObj.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestSerializedScriptValueInterface.cpp (modified) (1 diff)
-
bindings/scripts/test/V8/V8TestObj.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r118650 r118651 1 2012-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 1 28 2012-05-28 Darin Adler <darin@apple.com> 2 29 -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestActiveDOMObject.cpp
r118616 r118651 230 230 void JSTestActiveDOMObjectOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context) 231 231 { 232 JSTestActiveDOMObject* jsTestActiveDOMObject = static_cast<JSTestActiveDOMObject*>(handle.get().asCell());232 JSTestActiveDOMObject* jsTestActiveDOMObject = jsCast<JSTestActiveDOMObject*>(handle.get().asCell()); 233 233 DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context); 234 234 uncacheWrapper(world, jsTestActiveDOMObject->impl(), jsTestActiveDOMObject); -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestCustomNamedGetter.cpp
r118616 r118651 203 203 void JSTestCustomNamedGetterOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context) 204 204 { 205 JSTestCustomNamedGetter* jsTestCustomNamedGetter = static_cast<JSTestCustomNamedGetter*>(handle.get().asCell());205 JSTestCustomNamedGetter* jsTestCustomNamedGetter = jsCast<JSTestCustomNamedGetter*>(handle.get().asCell()); 206 206 DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context); 207 207 uncacheWrapper(world, jsTestCustomNamedGetter->impl(), jsTestCustomNamedGetter); -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestEventConstructor.cpp
r118616 r118651 230 230 void JSTestEventConstructorOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context) 231 231 { 232 JSTestEventConstructor* jsTestEventConstructor = static_cast<JSTestEventConstructor*>(handle.get().asCell());232 JSTestEventConstructor* jsTestEventConstructor = jsCast<JSTestEventConstructor*>(handle.get().asCell()); 233 233 DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context); 234 234 uncacheWrapper(world, jsTestEventConstructor->impl(), jsTestEventConstructor); -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestEventTarget.cpp
r118616 r118651 331 331 void JSTestEventTargetOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context) 332 332 { 333 JSTestEventTarget* jsTestEventTarget = static_cast<JSTestEventTarget*>(handle.get().asCell());333 JSTestEventTarget* jsTestEventTarget = jsCast<JSTestEventTarget*>(handle.get().asCell()); 334 334 DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context); 335 335 uncacheWrapper(world, jsTestEventTarget->impl(), jsTestEventTarget); -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestException.cpp
r118616 r118651 172 172 void JSTestExceptionOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context) 173 173 { 174 JSTestException* jsTestException = static_cast<JSTestException*>(handle.get().asCell());174 JSTestException* jsTestException = jsCast<JSTestException*>(handle.get().asCell()); 175 175 DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context); 176 176 uncacheWrapper(world, jsTestException->impl(), jsTestException); -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestInterface.cpp
r118616 r118651 436 436 void JSTestInterfaceOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context) 437 437 { 438 JSTestInterface* jsTestInterface = static_cast<JSTestInterface*>(handle.get().asCell());438 JSTestInterface* jsTestInterface = jsCast<JSTestInterface*>(handle.get().asCell()); 439 439 DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context); 440 440 uncacheWrapper(world, jsTestInterface->impl(), jsTestInterface); -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestMediaQueryListListener.cpp
r118616 r118651 193 193 void JSTestMediaQueryListListenerOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context) 194 194 { 195 JSTestMediaQueryListListener* jsTestMediaQueryListListener = static_cast<JSTestMediaQueryListListener*>(handle.get().asCell());195 JSTestMediaQueryListListener* jsTestMediaQueryListListener = jsCast<JSTestMediaQueryListListener*>(handle.get().asCell()); 196 196 DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context); 197 197 uncacheWrapper(world, jsTestMediaQueryListListener->impl(), jsTestMediaQueryListListener); -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestNamedConstructor.cpp
r118616 r118651 207 207 void JSTestNamedConstructorOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context) 208 208 { 209 JSTestNamedConstructor* jsTestNamedConstructor = static_cast<JSTestNamedConstructor*>(handle.get().asCell());209 JSTestNamedConstructor* jsTestNamedConstructor = jsCast<JSTestNamedConstructor*>(handle.get().asCell()); 210 210 DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context); 211 211 uncacheWrapper(world, jsTestNamedConstructor->impl(), jsTestNamedConstructor); -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestObj.cpp
r118616 r118651 2811 2811 void JSTestObjOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context) 2812 2812 { 2813 JSTestObj* jsTestObj = static_cast<JSTestObj*>(handle.get().asCell());2813 JSTestObj* jsTestObj = jsCast<JSTestObj*>(handle.get().asCell()); 2814 2814 DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context); 2815 2815 uncacheWrapper(world, jsTestObj->impl(), jsTestObj); -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestSerializedScriptValueInterface.cpp
r118616 r118651 381 381 void JSTestSerializedScriptValueInterfaceOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context) 382 382 { 383 JSTestSerializedScriptValueInterface* jsTestSerializedScriptValueInterface = static_cast<JSTestSerializedScriptValueInterface*>(handle.get().asCell());383 JSTestSerializedScriptValueInterface* jsTestSerializedScriptValueInterface = jsCast<JSTestSerializedScriptValueInterface*>(handle.get().asCell()); 384 384 DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context); 385 385 uncacheWrapper(world, jsTestSerializedScriptValueInterface->impl(), jsTestSerializedScriptValueInterface); -
trunk/Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp
r118274 r118651 2406 2406 { 2407 2407 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); 2408 2410 if (ContextEnabledFeatures::enabledAtContextAttr1Enabled(impl)) { 2409 2411 static const BatchedAttribute attrData =\
Note:
See TracChangeset
for help on using the changeset viewer.