| Index: Source/bindings/tests/results/V8TestTypedefs.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestTypedefs.cpp b/Source/bindings/tests/results/V8TestTypedefs.cpp
|
| index fd9eb66c51c42a8810ee81d9bfd9f6cf67700ceb..40a63008e9e3886b7ddd4023f4ae0217ce12a4ff 100644
|
| --- a/Source/bindings/tests/results/V8TestTypedefs.cpp
|
| +++ b/Source/bindings/tests/results/V8TestTypedefs.cpp
|
| @@ -350,7 +350,7 @@ v8::Handle<v8::Object> V8TestTypedefs::findInstanceInPrototypeChain(v8::Handle<v
|
|
|
| TestTypedefs* V8TestTypedefs::toNativeWithTypeCheck(v8::Isolate* isolate, v8::Handle<v8::Value> value)
|
| {
|
| - return hasInstance(value, isolate) ? fromInternalPointer(v8::Handle<v8::Object>::Cast(value)->GetAlignedPointerFromInternalField(v8DOMWrapperObjectIndex)) : 0;
|
| + return hasInstance(value, isolate) ? fromInternalPointer(blink::toInternalPointer(v8::Handle<v8::Object>::Cast(value))) : 0;
|
| }
|
|
|
| v8::Handle<v8::Object> wrap(TestTypedefs* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
|
| @@ -380,9 +380,9 @@ v8::Handle<v8::Object> V8TestTypedefs::createWrapper(PassRefPtr<TestTypedefs> im
|
| return wrapper;
|
| }
|
|
|
| -void V8TestTypedefs::derefObject(void* object)
|
| +void V8TestTypedefs::derefObject(ScriptWrappableBase* internalPointer)
|
| {
|
| - fromInternalPointer(object)->deref();
|
| + fromInternalPointer(internalPointer)->deref();
|
| }
|
|
|
| template<>
|
|
|