| Index: Source/bindings/tests/results/core/V8TestInterface2.cpp
|
| diff --git a/Source/bindings/tests/results/core/V8TestInterface2.cpp b/Source/bindings/tests/results/core/V8TestInterface2.cpp
|
| index ef0a730941c48669d0704eefea7618541d16e159..1d131b77720eeaaefd82878676563211430eae2a 100644
|
| --- a/Source/bindings/tests/results/core/V8TestInterface2.cpp
|
| +++ b/Source/bindings/tests/results/core/V8TestInterface2.cpp
|
| @@ -234,7 +234,7 @@ static void toStringMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& in
|
| static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| {
|
| RefPtr<TestInterface2> impl = TestInterface2::create();
|
| - v8::Handle<v8::Object> wrapper = info.Holder();
|
| + v8::Local<v8::Object> wrapper = info.Holder();
|
| impl->associateWithWrapper(info.GetIsolate(), &V8TestInterface2::wrapperTypeInfo, wrapper);
|
| v8SetReturnValue(info, wrapper);
|
| }
|
| @@ -408,7 +408,7 @@ static void namedPropertyEnumerator(const v8::PropertyCallbackInfo<v8::Array>& i
|
| impl->namedPropertyEnumerator(names, exceptionState);
|
| if (exceptionState.throwIfNeeded())
|
| return;
|
| - v8::Handle<v8::Array> v8names = v8::Array::New(info.GetIsolate(), names.size());
|
| + v8::Local<v8::Array> v8names = v8::Array::New(info.GetIsolate(), names.size());
|
| for (size_t i = 0; i < names.size(); ++i)
|
| v8names->Set(v8::Integer::New(info.GetIsolate(), i), v8String(info.GetIsolate(), names[i]));
|
| v8SetReturnValue(info, v8names);
|
|
|