| Index: Source/bindings/tests/results/core/V8TestInterface2.h | 
| diff --git a/Source/bindings/tests/results/core/V8TestInterface2.h b/Source/bindings/tests/results/core/V8TestInterface2.h | 
| index 2c3061e5484c48a63c8b41f6fa021432ee0d5c93..0abb768dc7e55c24a40e6c35a5755bbeb6cb00eb 100644 | 
| --- a/Source/bindings/tests/results/core/V8TestInterface2.h | 
| +++ b/Source/bindings/tests/results/core/V8TestInterface2.h | 
| @@ -19,14 +19,14 @@ namespace blink { | 
|  | 
| class V8TestInterface2 { | 
| public: | 
| -    static bool hasInstance(v8::Handle<v8::Value>, v8::Isolate*); | 
| -    static v8::Handle<v8::Object> findInstanceInPrototypeChain(v8::Handle<v8::Value>, v8::Isolate*); | 
| +    static bool hasInstance(v8::Local<v8::Value>, v8::Isolate*); | 
| +    static v8::Local<v8::Object> findInstanceInPrototypeChain(v8::Local<v8::Value>, v8::Isolate*); | 
| static v8::Local<v8::FunctionTemplate> domTemplate(v8::Isolate*); | 
| -    static TestInterface2* toImpl(v8::Handle<v8::Object> object) | 
| +    static TestInterface2* toImpl(v8::Local<v8::Object> object) | 
| { | 
| return blink::toScriptWrappable(object)->toImpl<TestInterface2>(); | 
| } | 
| -    static TestInterface2* toImplWithTypeCheck(v8::Isolate*, v8::Handle<v8::Value>); | 
| +    static TestInterface2* toImplWithTypeCheck(v8::Isolate*, v8::Local<v8::Value>); | 
| static const WrapperTypeInfo wrapperTypeInfo; | 
| static void refObject(ScriptWrappable*); | 
| static void derefObject(ScriptWrappable*); | 
|  |