| Index: Source/bindings/core/v8/WorkerScriptDebugServer.cpp
|
| diff --git a/Source/bindings/core/v8/WorkerScriptDebugServer.cpp b/Source/bindings/core/v8/WorkerScriptDebugServer.cpp
|
| index b783777fe3a6a6dbeb10ff90038c717a0c58b38e..8309caa6b45c9c2a8921bba543b9c620d3206afd 100644
|
| --- a/Source/bindings/core/v8/WorkerScriptDebugServer.cpp
|
| +++ b/Source/bindings/core/v8/WorkerScriptDebugServer.cpp
|
| @@ -72,7 +72,7 @@ void WorkerScriptDebugServer::addListener(ScriptDebugListener* listener)
|
| 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(v8::Integer::New(m_isolate, i))));
|
| + dispatchDidParseSource(listener, v8::Handle<v8::Object>::Cast(scriptsArray->Get(v8::Integer::New(m_isolate, i))), CompileSuccess);
|
| }
|
|
|
| void WorkerScriptDebugServer::removeListener(ScriptDebugListener* listener)
|
|
|