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> | 8 #include <stddef.h> |
9 | 9 |
10 #include <set> | 10 #include <set> |
11 | 11 |
12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/memory/scoped_ptr.h" |
13 #include "base/pending_task.h" | 14 #include "base/pending_task.h" |
14 #include "base/threading/thread_checker.h" | 15 #include "base/threading/thread_checker.h" |
15 #include "base/trace_event/trace_event.h" | 16 #include "base/trace_event/trace_event.h" |
16 #include "base/trace_event/trace_event_argument.h" | 17 #include "base/trace_event/trace_event_argument.h" |
17 #include "components/scheduler/base/enqueue_order.h" | 18 #include "components/scheduler/base/enqueue_order.h" |
18 #include "components/scheduler/base/task_queue.h" | 19 #include "components/scheduler/base/task_queue.h" |
19 #include "components/scheduler/scheduler_export.h" | 20 #include "components/scheduler/scheduler_export.h" |
20 | 21 |
21 namespace scheduler { | 22 namespace scheduler { |
22 class LazyNow; | 23 class LazyNow; |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 const bool should_notify_observers_; | 300 const bool should_notify_observers_; |
300 const bool should_report_when_execution_blocked_; | 301 const bool should_report_when_execution_blocked_; |
301 | 302 |
302 DISALLOW_COPY_AND_ASSIGN(TaskQueueImpl); | 303 DISALLOW_COPY_AND_ASSIGN(TaskQueueImpl); |
303 }; | 304 }; |
304 | 305 |
305 } // namespace internal | 306 } // namespace internal |
306 } // namespace scheduler | 307 } // namespace scheduler |
307 | 308 |
308 #endif // CONTENT_RENDERER_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_ | 309 #endif // CONTENT_RENDERER_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_ |
OLD | NEW |