Index: Source/WebCore/bindings/v8/NPV8Object.cpp |
=================================================================== |
--- Source/WebCore/bindings/v8/NPV8Object.cpp (revision 141118) |
+++ Source/WebCore/bindings/v8/NPV8Object.cpp (working copy) |
@@ -536,7 +536,7 @@ |
*count = props->Length(); |
*identifier = static_cast<NPIdentifier*>(malloc(sizeof(NPIdentifier*) * *count)); |
for (uint32_t i = 0; i < *count; ++i) { |
- v8::Local<v8::Value> name = props->Get(v8Integer(i, context->GetIsolate())); |
+ v8::Local<v8::Value> name = props->Get(deprecatedV8Integer(i)); |
(*identifier)[i] = getStringIdentifier(v8::Local<v8::String>::Cast(name)); |
} |
return true; |