| Index: Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp b/Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp
|
| index 806dd8e45badea5dd0731c9a1b6afc373a3f2566..ba37a9e5f4e2dbb52ce8efcc07350b4ac4eb32c4 100644
|
| --- a/Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp
|
| +++ b/Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp
|
| @@ -114,20 +114,20 @@ v8::Handle<v8::Object> V8TestInterfaceConstructor3::findInstanceInPrototypeChain
|
| return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrapperTypeInfo, v8Value);
|
| }
|
|
|
| -TestInterfaceConstructor3* V8TestInterfaceConstructor3::toNativeWithTypeCheck(v8::Isolate* isolate, v8::Handle<v8::Value> value)
|
| +TestInterfaceConstructor3* V8TestInterfaceConstructor3::toImplWithTypeCheck(v8::Isolate* isolate, v8::Handle<v8::Value> value)
|
| {
|
| - return hasInstance(value, isolate) ? fromInternalPointer(blink::toInternalPointer(v8::Handle<v8::Object>::Cast(value))) : 0;
|
| + return hasInstance(value, isolate) ? blink::toScriptWrappableBase(v8::Handle<v8::Object>::Cast(value))->toImpl<TestInterfaceConstructor3>() : 0;
|
| }
|
|
|
|
|
| void V8TestInterfaceConstructor3::refObject(ScriptWrappableBase* internalPointer)
|
| {
|
| - fromInternalPointer(internalPointer)->ref();
|
| + internalPointer->toImpl<TestInterfaceConstructor3>()->ref();
|
| }
|
|
|
| void V8TestInterfaceConstructor3::derefObject(ScriptWrappableBase* internalPointer)
|
| {
|
| - fromInternalPointer(internalPointer)->deref();
|
| + internalPointer->toImpl<TestInterfaceConstructor3>()->deref();
|
| }
|
|
|
| WrapperPersistentNode* V8TestInterfaceConstructor3::createPersistentHandle(ScriptWrappableBase* internalPointer)
|
|
|