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