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