Index: Source/bindings/tests/results/core/V8TestInterfaceEventTarget.cpp |
diff --git a/Source/bindings/tests/results/core/V8TestInterfaceEventTarget.cpp b/Source/bindings/tests/results/core/V8TestInterfaceEventTarget.cpp |
index dfa40f444341f0eb671285b6acb8e09843f253c0..7b15762cb826309fcdb021fcf10c6ef295093eb5 100644 |
--- a/Source/bindings/tests/results/core/V8TestInterfaceEventTarget.cpp |
+++ b/Source/bindings/tests/results/core/V8TestInterfaceEventTarget.cpp |
@@ -93,19 +93,19 @@ v8::Local<v8::FunctionTemplate> V8TestInterfaceEventTarget::domTemplate(v8::Isol |
return V8DOMConfiguration::domClassTemplate(isolate, const_cast<WrapperTypeInfo*>(&wrapperTypeInfo), installV8TestInterfaceEventTargetTemplate); |
} |
-bool V8TestInterfaceEventTarget::hasInstance(v8::Handle<v8::Value> v8Value, v8::Isolate* isolate) |
+bool V8TestInterfaceEventTarget::hasInstance(v8::Local<v8::Value> v8Value, v8::Isolate* isolate) |
{ |
return V8PerIsolateData::from(isolate)->hasInstance(&wrapperTypeInfo, v8Value); |
} |
-v8::Handle<v8::Object> V8TestInterfaceEventTarget::findInstanceInPrototypeChain(v8::Handle<v8::Value> v8Value, v8::Isolate* isolate) |
+v8::Local<v8::Object> V8TestInterfaceEventTarget::findInstanceInPrototypeChain(v8::Local<v8::Value> v8Value, v8::Isolate* isolate) |
{ |
return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrapperTypeInfo, v8Value); |
} |
-TestInterfaceEventTarget* V8TestInterfaceEventTarget::toImplWithTypeCheck(v8::Isolate* isolate, v8::Handle<v8::Value> value) |
+TestInterfaceEventTarget* V8TestInterfaceEventTarget::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 V8TestInterfaceEventTarget::refObject(ScriptWrappable* scriptWrappable) |