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