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

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

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/core/workers/WorkerMessagingProxy.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 3e4addbdd49ff2e600b182d194db60c82a2ba575..3c318dd5f45b1eb38622fc0e7cee8377039d0542 100644
--- a/Source/core/workers/WorkerThread.h
+++ b/Source/core/workers/WorkerThread.h
@@ -83,8 +83,8 @@ public:
WorkerReportingProxy& workerReportingProxy() const { return m_workerReportingProxy; }
- void postTask(PassOwnPtr<ExecutionContextTask>);
- void postDebuggerTask(PassOwnPtr<ExecutionContextTask>);
+ void postTask(const WebTraceLocation&, PassOwnPtr<ExecutionContextTask>);
+ void postDebuggerTask(const WebTraceLocation&, PassOwnPtr<ExecutionContextTask>);
enum WaitMode { WaitForMessage, DontWaitForMessage };
MessageQueueWaitResult runDebuggerTask(WaitMode = WaitForMessage);
@@ -123,7 +123,7 @@ private:
void initialize();
void cleanup();
void idleHandler();
- void postDelayedTask(PassOwnPtr<ExecutionContextTask>, long long delayMs);
+ void postDelayedTask(const WebTraceLocation&, PassOwnPtr<ExecutionContextTask>, long long delayMs);
bool m_terminated;
OwnPtr<WorkerSharedTimer> m_sharedTimer;
« no previous file with comments | « Source/core/workers/WorkerMessagingProxy.cpp ('k') | Source/core/workers/WorkerThread.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698