Index: Source/bindings/tests/results/core/V8TestInterfaceConstructor4.cpp |
diff --git a/Source/bindings/tests/results/core/V8TestInterfaceConstructor4.cpp b/Source/bindings/tests/results/core/V8TestInterfaceConstructor4.cpp |
index f6f3c9bb048cb7ce3862cd7de789e1ef45d3f7e9..f4341529adc944a47b8fd4fb7a75eefc453961b7 100644 |
--- a/Source/bindings/tests/results/core/V8TestInterfaceConstructor4.cpp |
+++ b/Source/bindings/tests/results/core/V8TestInterfaceConstructor4.cpp |
@@ -133,9 +133,10 @@ v8::Handle<v8::Object> V8TestInterfaceConstructor4::findInstanceInPrototypeChain |
return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrapperTypeInfo, v8Value); |
} |
+ |
TestInterfaceConstructor4* V8TestInterfaceConstructor4::toImplWithTypeCheck(v8::Isolate* isolate, v8::Handle<v8::Value> value) |
{ |
- return hasInstance(value, isolate) ? blink::toScriptWrappableBase(v8::Handle<v8::Object>::Cast(value))->toImpl<TestInterfaceConstructor4>() : 0; |
+ return hasInstance(value, isolate) ? toImpl(v8::Handle<v8::Object>::Cast(value)) : 0; |
} |