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