| 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 045d0e05eb404c4032fd0e81cb05d060ecb5b7eb..4829a165661770af6c178e2bd69d7a0c41947c5f 100644
|
| --- a/Source/bindings/tests/results/core/V8TestInterfaceCustomConstructor.cpp
|
| +++ b/Source/bindings/tests/results/core/V8TestInterfaceCustomConstructor.cpp
|
| @@ -73,19 +73,19 @@ v8::Local<v8::FunctionTemplate> V8TestInterfaceCustomConstructor::domTemplate(v8
|
| return V8DOMConfiguration::domClassTemplate(isolate, const_cast<WrapperTypeInfo*>(&wrapperTypeInfo), installV8TestInterfaceCustomConstructorTemplate);
|
| }
|
|
|
| -bool V8TestInterfaceCustomConstructor::hasInstance(v8::Handle<v8::Value> v8Value, v8::Isolate* isolate)
|
| +bool V8TestInterfaceCustomConstructor::hasInstance(v8::Local<v8::Value> v8Value, v8::Isolate* isolate)
|
| {
|
| return V8PerIsolateData::from(isolate)->hasInstance(&wrapperTypeInfo, v8Value);
|
| }
|
|
|
| -v8::Handle<v8::Object> V8TestInterfaceCustomConstructor::findInstanceInPrototypeChain(v8::Handle<v8::Value> v8Value, v8::Isolate* isolate)
|
| +v8::Local<v8::Object> V8TestInterfaceCustomConstructor::findInstanceInPrototypeChain(v8::Local<v8::Value> v8Value, v8::Isolate* isolate)
|
| {
|
| return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrapperTypeInfo, v8Value);
|
| }
|
|
|
| -TestInterfaceCustomConstructor* V8TestInterfaceCustomConstructor::toImplWithTypeCheck(v8::Isolate* isolate, v8::Handle<v8::Value> value)
|
| +TestInterfaceCustomConstructor* V8TestInterfaceCustomConstructor::toImplWithTypeCheck(v8::Isolate* isolate, v8::Local<v8::Value> value)
|
| {
|
| - return hasInstance(value, isolate) ? toImpl(v8::Handle<v8::Object>::Cast(value)) : 0;
|
| + return hasInstance(value, isolate) ? toImpl(v8::Local<v8::Object>::Cast(value)) : 0;
|
| }
|
|
|
| void V8TestInterfaceCustomConstructor::refObject(ScriptWrappable* scriptWrappable)
|
|
|