| 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..7070fc7c1ea71a76b29667a206e8fb44bc4d9c4d 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))), false);
|
| }
|
|
|
| void WorkerScriptDebugServer::removeListener(ScriptDebugListener* listener)
|
|
|