| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_RENDERER_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_ |
| 6 #define CONTENT_RENDERER_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_ | 6 #define CONTENT_RENDERER_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <set> | 10 #include <set> |
| 9 | 11 |
| 12 #include "base/macros.h" |
| 10 #include "base/pending_task.h" | 13 #include "base/pending_task.h" |
| 11 #include "base/threading/thread_checker.h" | 14 #include "base/threading/thread_checker.h" |
| 12 #include "base/trace_event/trace_event.h" | 15 #include "base/trace_event/trace_event.h" |
| 13 #include "base/trace_event/trace_event_argument.h" | 16 #include "base/trace_event/trace_event_argument.h" |
| 14 #include "components/scheduler/base/enqueue_order.h" | 17 #include "components/scheduler/base/enqueue_order.h" |
| 15 #include "components/scheduler/base/task_queue.h" | 18 #include "components/scheduler/base/task_queue.h" |
| 16 #include "components/scheduler/scheduler_export.h" | 19 #include "components/scheduler/scheduler_export.h" |
| 17 | 20 |
| 18 namespace scheduler { | 21 namespace scheduler { |
| 19 class LazyNow; | 22 class LazyNow; |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 const bool should_monitor_quiescence_; | 262 const bool should_monitor_quiescence_; |
| 260 const bool should_notify_observers_; | 263 const bool should_notify_observers_; |
| 261 | 264 |
| 262 DISALLOW_COPY_AND_ASSIGN(TaskQueueImpl); | 265 DISALLOW_COPY_AND_ASSIGN(TaskQueueImpl); |
| 263 }; | 266 }; |
| 264 | 267 |
| 265 } // namespace internal | 268 } // namespace internal |
| 266 } // namespace scheduler | 269 } // namespace scheduler |
| 267 | 270 |
| 268 #endif // CONTENT_RENDERER_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_ | 271 #endif // CONTENT_RENDERER_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_ |
| OLD | NEW |