Index: Source/bindings/tests/results/core/V8TestSpecialOperations.cpp |
diff --git a/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp b/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp |
index 9632223148822834ebe42201aa649d841fccf642..f78c8a96aee6a339e6c6c8164c2a88d098c96770 100644 |
--- a/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp |
+++ b/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp |
@@ -132,7 +132,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); |