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

Unified Diff: third_party/WebKit/Source/core/loader/WorkerThreadableLoader.h

Issue 2645613006: Worker: Stop using ExecutionContextTask on WorkerLoaderProxy::postTaskToWorkerGlobalScope (Closed)
Patch Set: rebase 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/loader/WorkerThreadableLoader.h
diff --git a/third_party/WebKit/Source/core/loader/WorkerThreadableLoader.h b/third_party/WebKit/Source/core/loader/WorkerThreadableLoader.h
index 3cffacfe1085875438dac629edce95dea5ba661b..6ed9de9784a98e9655f5ee647d07312b45e361ab 100644
--- a/third_party/WebKit/Source/core/loader/WorkerThreadableLoader.h
+++ b/third_party/WebKit/Source/core/loader/WorkerThreadableLoader.h
@@ -115,10 +115,10 @@ class WorkerThreadableLoader final : public ThreadableLoader {
public:
virtual ~TaskForwarder() {}
virtual void forwardTask(const WebTraceLocation&,
- std::unique_ptr<ExecutionContextTask>) = 0;
+ std::unique_ptr<WTF::CrossThreadClosure>) = 0;
yhirano 2017/01/19 10:54:29 WTF:: not needed?
nhiroki 2017/01/19 14:02:34 Done.
virtual void forwardTaskWithDoneSignal(
const WebTraceLocation&,
- std::unique_ptr<ExecutionContextTask>) = 0;
+ std::unique_ptr<WTF::CrossThreadClosure>) = 0;
virtual void abort() = 0;
DEFINE_INLINE_VIRTUAL_TRACE() {}

Powered by Google App Engine
This is Rietveld 408576698