| Index: Source/core/workers/WorkerThread.cpp
|
| diff --git a/Source/core/workers/WorkerThread.cpp b/Source/core/workers/WorkerThread.cpp
|
| index 4afc1f86c0dd84d85880c9f0ca1d31ee3f73c104..8c20669eba7588ac47291a2f52e4b2a0e5cd0f5b 100644
|
| --- a/Source/core/workers/WorkerThread.cpp
|
| +++ b/Source/core/workers/WorkerThread.cpp
|
| @@ -320,8 +320,9 @@ void WorkerThread::initialize()
|
| if (!script->isExecutionForbidden())
|
| script->initializeContextIfNeeded();
|
| InspectorInstrumentation::willEvaluateWorkerScript(workerGlobalScope(), startMode);
|
| - script->evaluate(ScriptSourceCode(sourceCode, scriptURL));
|
| + bool success = script->evaluate(ScriptSourceCode(sourceCode, scriptURL));
|
| m_workerGlobalScope->didEvaluateWorkerScript();
|
| + m_workerReportingProxy.didEvaluateWorkerScript(success);
|
|
|
| postInitialize();
|
|
|
|
|