Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1439)

Unified Diff: Source/core/workers/WorkerObjectProxy.cpp

Issue 1115923002: workers: Rename WorkerThread to WorkerScript. Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/workers/WorkerObjectProxy.cpp
diff --git a/Source/core/workers/WorkerObjectProxy.cpp b/Source/core/workers/WorkerObjectProxy.cpp
index 9cf78b2a51b0cd7ad76c0fae11028f21989e14a3..92e832942f79add4e1e537563ea6d35bb0cadf79 100644
--- a/Source/core/workers/WorkerObjectProxy.cpp
+++ b/Source/core/workers/WorkerObjectProxy.cpp
@@ -94,10 +94,10 @@ void WorkerObjectProxy::workerGlobalScopeClosed()
m_executionContext->postTask(FROM_HERE, createCrossThreadTask(&WorkerMessagingProxy::terminateWorkerGlobalScope, m_messagingProxy));
}
-void WorkerObjectProxy::workerThreadTerminated()
+void WorkerObjectProxy::workerScriptTerminated()
{
// This will terminate the MessagingProxy.
- m_executionContext->postTask(FROM_HERE, createCrossThreadTask(&WorkerMessagingProxy::workerThreadTerminated, m_messagingProxy));
+ m_executionContext->postTask(FROM_HERE, createCrossThreadTask(&WorkerMessagingProxy::workerScriptTerminated, m_messagingProxy));
}
WorkerObjectProxy::WorkerObjectProxy(ExecutionContext* executionContext, WorkerMessagingProxy* messagingProxy)

Powered by Google App Engine
This is Rietveld 408576698