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

Unified Diff: content/child/scheduler/task_queue_manager.cc

Issue 1033643004: Add a WorkerScheduler and a WebThreadImplForWorker (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: InitOnThread needed to call Init() Created 5 years, 9 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: content/child/scheduler/task_queue_manager.cc
diff --git a/content/child/scheduler/task_queue_manager.cc b/content/child/scheduler/task_queue_manager.cc
index 386ebd0c955cc642f6ea09c8db56d004d33e9a41..d1452d82c340aa00421ef6b5dd80b9c13cddb671 100644
--- a/content/child/scheduler/task_queue_manager.cc
+++ b/content/child/scheduler/task_queue_manager.cc
@@ -306,7 +306,6 @@ bool TaskQueue::UpdateWorkQueue(LazyNow* lazy_now,
MoveReadyDelayedTasksToIncomingQueueLocked(lazy_now);
if (!ShouldAutoPumpQueueLocked(previous_task))
return false;
- MoveReadyDelayedTasksToIncomingQueueLocked(lazy_now);
Sami 2015/04/02 10:19:45 Did you mean to make this change? If so, probably
alex clarke (OOO till 29th) 2015/04/02 15:19:28 Done.
work_queue_.Swap(&incoming_queue_);
TraceQueueSize(true);
return true;

Powered by Google App Engine
This is Rietveld 408576698