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

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

Issue 507873003: [Blink-Worker] WorkerThread fires idleHandler only at the end of processing all tasks. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed spurious new line deletion. Created 6 years, 4 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 | « no previous file | Source/core/workers/WorkerThread.cpp » ('j') | Source/core/workers/WorkerThread.cpp » ('J')
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 80a2bf549d83d441c9a8c73508a7b5a837fc746b..fd807262912612c4b40ad969e031430be45eaf2a 100644
--- a/Source/core/workers/WorkerThread.h
+++ b/Source/core/workers/WorkerThread.h
@@ -94,6 +94,11 @@ namespace blink {
void interruptAndDispatchInspectorCommands();
void setWorkerInspectorController(WorkerInspectorController*);
+ unsigned decrementAndReturnTaskCount();
jochen (gone - plz use gerrit) 2014/09/02 10:14:14 those should all be private
Mayur Kankanwadi 2014/09/03 11:26:22 These functions are accessed from within the Worke
+ unsigned taskCount();
+ void queueUpIdleHandlerNow();
+ void decrementTaskCount();
+ bool isIdleHandlerTaskFiredOnce();
protected:
WorkerThread(WorkerLoaderProxy&, WorkerReportingProxy&, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>);
@@ -131,6 +136,10 @@ namespace blink {
// Used to signal thread shutdown.
OwnPtr<blink::WebWaitableEvent> m_shutdownEvent;
+ Mutex m_taskCounterMutex;
+ unsigned m_tasksCount;
+ bool m_isIdleHandlerTaskFiredOnce;
+ bool m_isIdleHandlerTask;
// FIXME: This has to be last because of crbug.com/401397 - the
// WorkerThread might get deleted before it had a chance to properly
« no previous file with comments | « no previous file | Source/core/workers/WorkerThread.cpp » ('j') | Source/core/workers/WorkerThread.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698