Index: Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp |
diff --git a/Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp b/Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp |
index a3257c71450df11624be85f60afc18ffe0d63b2e..9474a6fbfd1968440b35a58eb72419ed1129f9b8 100644 |
--- a/Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp |
+++ b/Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp |
@@ -39,7 +39,7 @@ static void constructor1(const v8::FunctionCallbackInfo<v8::Value>& info) |
TOSTRING_VOID_INTERNAL(stringArg, info[0]); |
} |
RefPtr<TestInterfaceConstructor2> impl = TestInterfaceConstructor2::create(stringArg); |
- v8::Handle<v8::Object> wrapper = info.Holder(); |
+ v8::Local<v8::Object> wrapper = info.Holder(); |
impl->associateWithWrapper(info.GetIsolate(), &V8TestInterfaceConstructor2::wrapperTypeInfo, wrapper); |
v8SetReturnValue(info, wrapper); |
} |
@@ -57,7 +57,7 @@ static void constructor2(const v8::FunctionCallbackInfo<v8::Value>& info) |
TONATIVE_VOID_EXCEPTIONSTATE_INTERNAL(dictionaryArg, Dictionary(info[0], info.GetIsolate(), exceptionState), exceptionState); |
} |
RefPtr<TestInterfaceConstructor2> impl = TestInterfaceConstructor2::create(dictionaryArg); |
- v8::Handle<v8::Object> wrapper = info.Holder(); |
+ v8::Local<v8::Object> wrapper = info.Holder(); |
impl->associateWithWrapper(info.GetIsolate(), &V8TestInterfaceConstructor2::wrapperTypeInfo, wrapper); |
v8SetReturnValue(info, wrapper); |
} |
@@ -70,7 +70,7 @@ static void constructor3(const v8::FunctionCallbackInfo<v8::Value>& info) |
TONATIVE_VOID_EXCEPTIONSTATE_INTERNAL(stringSequenceSequenceArg, toImplArray<Vector<String>>(info[0], 1, info.GetIsolate(), exceptionState), exceptionState); |
} |
RefPtr<TestInterfaceConstructor2> impl = TestInterfaceConstructor2::create(stringSequenceSequenceArg); |
- v8::Handle<v8::Object> wrapper = info.Holder(); |
+ v8::Local<v8::Object> wrapper = info.Holder(); |
impl->associateWithWrapper(info.GetIsolate(), &V8TestInterfaceConstructor2::wrapperTypeInfo, wrapper); |
v8SetReturnValue(info, wrapper); |
} |
@@ -101,7 +101,7 @@ static void constructor4(const v8::FunctionCallbackInfo<v8::Value>& info) |
TONATIVE_VOID_EXCEPTIONSTATE_INTERNAL(defaultUndefinedOptionalDictionaryArg, Dictionary(info[4], info.GetIsolate(), exceptionState), exceptionState); |
if (UNLIKELY(info.Length() <= 5)) { |
RefPtr<TestInterfaceConstructor2> impl = TestInterfaceConstructor2::create(testInterfaceEmptyArg, longArg, defaultUndefinedOptionalStringArg, defaultNullStringOptionalStringArg, defaultUndefinedOptionalDictionaryArg); |
- v8::Handle<v8::Object> wrapper = info.Holder(); |
+ v8::Local<v8::Object> wrapper = info.Holder(); |
impl->associateWithWrapper(info.GetIsolate(), &V8TestInterfaceConstructor2::wrapperTypeInfo, wrapper); |
v8SetReturnValue(info, wrapper); |
return; |
@@ -109,7 +109,7 @@ static void constructor4(const v8::FunctionCallbackInfo<v8::Value>& info) |
TOSTRING_VOID_INTERNAL(optionalStringArg, info[5]); |
} |
RefPtr<TestInterfaceConstructor2> impl = TestInterfaceConstructor2::create(testInterfaceEmptyArg, longArg, defaultUndefinedOptionalStringArg, defaultNullStringOptionalStringArg, defaultUndefinedOptionalDictionaryArg, optionalStringArg); |
- v8::Handle<v8::Object> wrapper = info.Holder(); |
+ v8::Local<v8::Object> wrapper = info.Holder(); |
impl->associateWithWrapper(info.GetIsolate(), &V8TestInterfaceConstructor2::wrapperTypeInfo, wrapper); |
v8SetReturnValue(info, wrapper); |
} |