Index: Source/bindings/tests/results/core/V8TestInterfaceNode.cpp |
diff --git a/Source/bindings/tests/results/core/V8TestInterfaceNode.cpp b/Source/bindings/tests/results/core/V8TestInterfaceNode.cpp |
index b5880df56c8ea76e237210c76bf8d3b914ed7142..239a1b0695f20dd022e058b17ebc919c0bb722fc 100644 |
--- a/Source/bindings/tests/results/core/V8TestInterfaceNode.cpp |
+++ b/Source/bindings/tests/results/core/V8TestInterfaceNode.cpp |
@@ -326,9 +326,10 @@ v8::Handle<v8::Object> V8TestInterfaceNode::findInstanceInPrototypeChain(v8::Han |
return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrapperTypeInfo, v8Value); |
} |
+ |
TestInterfaceNode* V8TestInterfaceNode::toImplWithTypeCheck(v8::Isolate* isolate, v8::Handle<v8::Value> value) |
{ |
- return hasInstance(value, isolate) ? blink::toScriptWrappableBase(v8::Handle<v8::Object>::Cast(value))->toImpl<TestInterfaceNode>() : 0; |
+ return hasInstance(value, isolate) ? toImpl(v8::Handle<v8::Object>::Cast(value)) : 0; |
} |
EventTarget* V8TestInterfaceNode::toEventTarget(v8::Handle<v8::Object> object) |