Index: Source/bindings/tests/results/core/V8TestNode.h |
diff --git a/Source/bindings/tests/results/core/V8TestNode.h b/Source/bindings/tests/results/core/V8TestNode.h |
index bb4fd3fe5d92f007e9e5a21a5bee622c8c866c89..0b51a20d8945404170831ab5d83ec1c38552cb01 100644 |
--- a/Source/bindings/tests/results/core/V8TestNode.h |
+++ b/Source/bindings/tests/results/core/V8TestNode.h |
@@ -20,14 +20,14 @@ namespace blink { |
class V8TestNode { |
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 TestNode* toImpl(v8::Handle<v8::Object> object) |
+ static TestNode* toImpl(v8::Local<v8::Object> object) |
{ |
return blink::toScriptWrappable(object)->toImpl<TestNode>(); |
} |
- static TestNode* toImplWithTypeCheck(v8::Isolate*, v8::Handle<v8::Value>); |
+ static TestNode* toImplWithTypeCheck(v8::Isolate*, v8::Local<v8::Value>); |
static const WrapperTypeInfo wrapperTypeInfo; |
static void refObject(ScriptWrappable*); |
static void derefObject(ScriptWrappable*); |