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

Unified Diff: third_party/WebKit/Source/core/workers/ThreadedMessagingProxyBase.cpp

Issue 2645613006: Worker: Stop using ExecutionContextTask on WorkerLoaderProxy::postTaskToWorkerGlobalScope (Closed)
Patch Set: address review comments Created 3 years, 11 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: third_party/WebKit/Source/core/workers/ThreadedMessagingProxyBase.cpp
diff --git a/third_party/WebKit/Source/core/workers/ThreadedMessagingProxyBase.cpp b/third_party/WebKit/Source/core/workers/ThreadedMessagingProxyBase.cpp
index f3c7be8c623fd7951a61a1d9141be1dc82cf0a3e..f9df56d0397e8d74dad2682d842a3ca1136794e7 100644
--- a/third_party/WebKit/Source/core/workers/ThreadedMessagingProxyBase.cpp
+++ b/third_party/WebKit/Source/core/workers/ThreadedMessagingProxyBase.cpp
@@ -62,7 +62,7 @@ void ThreadedMessagingProxyBase::initializeWorkerThread(
void ThreadedMessagingProxyBase::postTaskToWorkerGlobalScope(
const WebTraceLocation& location,
- std::unique_ptr<ExecutionContextTask> task) {
+ std::unique_ptr<WTF::CrossThreadClosure> task) {
if (m_askedToTerminate)
return;

Powered by Google App Engine
This is Rietveld 408576698