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

Unified Diff: base/message_loop/message_loop.h

Issue 18181011: Make a fairer combined message loop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: caching the result from MessagePump::NeedsScheduleWorkPerTask Created 7 years, 6 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: base/message_loop/message_loop.h
diff --git a/base/message_loop/message_loop.h b/base/message_loop/message_loop.h
index 846cc8d3577cad7014d7e90e8d3b65d8ad14f401..0946071e4ad1c5524c308c80ceb8ed54fb769133 100644
--- a/base/message_loop/message_loop.h
+++ b/base/message_loop/message_loop.h
@@ -528,6 +528,9 @@ class BASE_EXPORT MessageLoop : public MessagePump::Delegate {
// protected by incoming_queue_lock_.
int next_sequence_num_;
+ bool always_notify_pump_;
+
awong 2013/07/03 19:09:22 nit: spurious newline
Kristian Monsen 2013/07/03 21:20:03 Removed the variable, no changes in this file anym
+
ObserverList<TaskObserver> task_observers_;
// The message loop proxy associated with this message loop, if one exists.

Powered by Google App Engine
This is Rietveld 408576698