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

Unified Diff: Source/core/workers/WorkerThread.h

Issue 1303153005: Introduce WebTaskRunner Patch 3/5 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add missing #include Created 5 years, 3 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
« no previous file with comments | « Source/core/workers/WorkerInspectorProxy.cpp ('k') | Source/core/workers/WorkerThread.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/workers/WorkerThread.h
diff --git a/Source/core/workers/WorkerThread.h b/Source/core/workers/WorkerThread.h
index 1685abcf7afdde37cbd03a3229a6ca17e5e57cee..207c94bbc8832086bda68e6076d554c6910aad22 100644
--- a/Source/core/workers/WorkerThread.h
+++ b/Source/core/workers/WorkerThread.h
@@ -96,7 +96,7 @@ public:
WorkerReportingProxy& workerReportingProxy() const { return m_workerReportingProxy; }
void postTask(const WebTraceLocation&, PassOwnPtr<ExecutionContextTask>);
- void appendDebuggerTask(PassOwnPtr<WebThread::Task>);
+ void appendDebuggerTask(PassOwnPtr<WebTaskRunner::Task>);
enum WaitMode { WaitForMessage, DontWaitForMessage };
MessageQueueWaitResult runDebuggerTask(WaitMode = WaitForMessage);
@@ -156,7 +156,7 @@ private:
bool m_started;
bool m_terminated;
bool m_shutdown;
- MessageQueue<WebThread::Task> m_debuggerMessageQueue;
+ MessageQueue<WebTaskRunner::Task> m_debuggerMessageQueue;
OwnPtr<WebThread::TaskObserver> m_microtaskRunner;
RefPtr<WorkerLoaderProxy> m_workerLoaderProxy;
« no previous file with comments | « Source/core/workers/WorkerInspectorProxy.cpp ('k') | Source/core/workers/WorkerThread.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698