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