Index: Source/WebCore/bindings/v8/WorkerScriptDebugServer.cpp |
=================================================================== |
--- Source/WebCore/bindings/v8/WorkerScriptDebugServer.cpp (revision 141118) |
+++ Source/WebCore/bindings/v8/WorkerScriptDebugServer.cpp (working copy) |
@@ -74,7 +74,7 @@ |
ASSERT(!value->IsUndefined() && value->IsArray()); |
v8::Handle<v8::Array> scriptsArray = v8::Handle<v8::Array>::Cast(value); |
for (unsigned i = 0; i < scriptsArray->Length(); ++i) |
- dispatchDidParseSource(listener, v8::Handle<v8::Object>::Cast(scriptsArray->Get(v8Integer(i, debuggerContext->GetIsolate())))); |
+ dispatchDidParseSource(listener, v8::Handle<v8::Object>::Cast(scriptsArray->Get(deprecatedV8Integer(i)))); |
} |
void WorkerScriptDebugServer::removeListener(ScriptDebugListener* listener) |