| Index: base/message_loop/incoming_task_queue.h
|
| diff --git a/base/message_loop/incoming_task_queue.h b/base/message_loop/incoming_task_queue.h
|
| index 30f26033a2d5d61d66153c36a66cff2f1e1c33cd..72e1f30282966de72b01a505a6144839a1d00643 100644
|
| --- a/base/message_loop/incoming_task_queue.h
|
| +++ b/base/message_loop/incoming_task_queue.h
|
| @@ -84,6 +84,14 @@ class BASE_EXPORT IncomingTaskQueue
|
| // The next sequence number to use for delayed tasks.
|
| int next_sequence_num_;
|
|
|
| + // True if our message loop has already been scheduled and does not need to be
|
| + // scheduled again until an empty reload occurs.
|
| + bool message_loop_scheduled_;
|
| +
|
| + // True if we always need to call ScheduleWork when receiving a new task, even
|
| + // if the incoming queue was not empty.
|
| + const bool always_schedule_work_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(IncomingTaskQueue);
|
| };
|
|
|
|
|