| Index: Source/core/workers/WorkerObjectProxy.cpp
|
| diff --git a/Source/core/workers/WorkerObjectProxy.cpp b/Source/core/workers/WorkerObjectProxy.cpp
|
| index 6ce233b4e5c7f6d7b293aa38011ee5f4bffba7cb..03f780dfb0d2a228573e720b77d8a19c9950d86b 100644
|
| --- a/Source/core/workers/WorkerObjectProxy.cpp
|
| +++ b/Source/core/workers/WorkerObjectProxy.cpp
|
| @@ -93,10 +93,10 @@ void WorkerObjectProxy::workerGlobalScopeClosed()
|
| m_executionContext->postTask(createCrossThreadTask(&WorkerMessagingProxy::terminateWorkerGlobalScope, m_messagingProxy));
|
| }
|
|
|
| -void WorkerObjectProxy::workerGlobalScopeDestroyed()
|
| +void WorkerObjectProxy::workerThreadTerminated()
|
| {
|
| // This will terminate the MessagingProxy.
|
| - m_executionContext->postTask(createCrossThreadTask(&WorkerMessagingProxy::workerGlobalScopeDestroyed, m_messagingProxy));
|
| + m_executionContext->postTask(createCrossThreadTask(&WorkerMessagingProxy::workerThreadTerminated, m_messagingProxy));
|
| }
|
|
|
| WorkerObjectProxy::WorkerObjectProxy(ExecutionContext* executionContext, WorkerMessagingProxy* messagingProxy)
|
|
|