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