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

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

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.cpp
diff --git a/third_party/WebKit/Source/core/workers/WorkerThread.cpp b/third_party/WebKit/Source/core/workers/WorkerThread.cpp
index c96a79b1f24e3386c3a7b103532a0357a689e2c5..6e8997daec06e22b2d518d4abec20695070f5789 100644
--- a/third_party/WebKit/Source/core/workers/WorkerThread.cpp
+++ b/third_party/WebKit/Source/core/workers/WorkerThread.cpp
@@ -122,7 +122,7 @@ void WorkerThread::performTask(PassOwnPtr<ExecutionContextTask> task, bool isIns
InspectorInstrumentation::didPerformExecutionContextTask(globalScope);
}
-PassOwnPtr<Closure> WorkerThread::createWorkerThreadTask(PassOwnPtr<ExecutionContextTask> task, bool isInstrumented)
+PassOwnPtr<CrossThreadClosure> WorkerThread::createWorkerThreadTask(PassOwnPtr<ExecutionContextTask> task, bool isInstrumented)
{
if (isInstrumented)
isInstrumented = !task->taskNameForInstrumentation().isEmpty();
@@ -440,12 +440,12 @@ void WorkerThread::terminateV8Execution()
void WorkerThread::runDebuggerTaskDontWait()
{
- OwnPtr<Closure> task = m_inspectorTaskRunner->takeNextTask(InspectorTaskRunner::DontWaitForTask);
+ OwnPtr<CrossThreadClosure> task = m_inspectorTaskRunner->takeNextTask(InspectorTaskRunner::DontWaitForTask);
if (task)
(*task)();
}
-void WorkerThread::appendDebuggerTask(PassOwnPtr<Closure> task)
+void WorkerThread::appendDebuggerTask(PassOwnPtr<CrossThreadClosure> task)
{
{
MutexLocker lock(m_threadStateMutex);
@@ -461,7 +461,7 @@ void WorkerThread::appendDebuggerTask(PassOwnPtr<Closure> task)
backingThread().postTask(BLINK_FROM_HERE, threadSafeBind(&WorkerThread::runDebuggerTaskDontWait, AllowCrossThreadAccess(this)));
}
-void WorkerThread::runDebuggerTask(PassOwnPtr<Closure> task)
+void WorkerThread::runDebuggerTask(PassOwnPtr<CrossThreadClosure> task)
{
ASSERT(isCurrentThread());
InspectorTaskRunner::IgnoreInterruptsScope scope(m_inspectorTaskRunner.get());
@@ -486,7 +486,7 @@ void WorkerThread::startRunningDebuggerTasksOnPause()
{
m_pausedInDebugger = true;
InspectorInstrumentation::willEnterNestedRunLoop(m_workerGlobalScope.get());
- OwnPtr<Closure> task;
+ OwnPtr<CrossThreadClosure> task;
do {
{
SafePointScope safePointScope(BlinkGC::HeapPointersOnStack);
« no previous file with comments | « third_party/WebKit/Source/core/workers/WorkerThread.h ('k') | third_party/WebKit/Source/modules/fetch/CrossThreadHolder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698