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

Unified Diff: Source/web/WebWorkerRunLoop.cpp

Issue 899923004: Add task location information to WorkerThread (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased. Created 5 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
« no previous file with comments | « Source/web/WebSharedWorkerImpl.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebWorkerRunLoop.cpp
diff --git a/Source/web/WebWorkerRunLoop.cpp b/Source/web/WebWorkerRunLoop.cpp
index 97243c29d3315fd9a898eb64c646527376729c32..eaca97b2d30f2f2b1ad8c16f661d4f07ff991a76 100644
--- a/Source/web/WebWorkerRunLoop.cpp
+++ b/Source/web/WebWorkerRunLoop.cpp
@@ -61,7 +61,7 @@ WebWorkerRunLoop::WebWorkerRunLoop(WorkerThread* workerThread)
bool WebWorkerRunLoop::postTask(Task* task)
{
- m_workerThread->postTask(TaskForwarder::create(adoptPtr(task)));
+ m_workerThread->postTask(FROM_HERE, TaskForwarder::create(adoptPtr(task)));
return !m_workerThread->terminated();
}
« no previous file with comments | « Source/web/WebSharedWorkerImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698