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

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

Issue 1549143002: Add thread affinity and ASSERT() for same-thread restriction to WTF::Function (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@TRV_ThreadSafeBindByVariadicTemplate
Patch Set: Rebase. Created 4 years, 10 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/WorkerThread.h
diff --git a/third_party/WebKit/Source/core/workers/WorkerThread.h b/third_party/WebKit/Source/core/workers/WorkerThread.h
index 340922c81411f78943372af1fcc95d18ab2584f0..f04b67c526602dc311757a0d0eb21838648f237a 100644
--- a/third_party/WebKit/Source/core/workers/WorkerThread.h
+++ b/third_party/WebKit/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<Closure>);
+ void appendDebuggerTask(PassOwnPtr<CrossThreadClosure>);
// Runs only debugger tasks while paused in debugger, called on worker thread.
void startRunningDebuggerTasksOnPause();
@@ -136,7 +136,7 @@ protected:
private:
friend class WorkerMicrotaskRunner;
- PassOwnPtr<Closure> createWorkerThreadTask(PassOwnPtr<ExecutionContextTask>, bool isInstrumented);
+ PassOwnPtr<CrossThreadClosure> createWorkerThreadTask(PassOwnPtr<ExecutionContextTask>, bool isInstrumented);
// Called on the main thread.
void terminateInternal();
@@ -147,7 +147,7 @@ private:
void performTask(PassOwnPtr<ExecutionContextTask>, bool isInstrumented);
void performShutdownTask();
void postDelayedTask(const WebTraceLocation&, PassOwnPtr<ExecutionContextTask>, long long delayMs);
- void runDebuggerTask(PassOwnPtr<Closure>);
+ void runDebuggerTask(PassOwnPtr<CrossThreadClosure>);
void runDebuggerTaskDontWait();
bool m_started;
« no previous file with comments | « third_party/WebKit/Source/core/workers/WorkerScriptLoader.cpp ('k') | third_party/WebKit/Source/core/workers/WorkerThread.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698