| 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 THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_ | 5 #ifndef THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_ |
| 6 #define THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_ | 6 #define THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <set> | 11 #include <set> |
| 12 | 12 |
| 13 #include "base/callback.h" | 13 #include "base/callback.h" |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "base/pending_task.h" | 15 #include "base/pending_task.h" |
| 16 #include "base/threading/thread_checker.h" | 16 #include "base/threading/thread_checker.h" |
| 17 #include "base/trace_event/trace_event.h" | 17 #include "base/trace_event/trace_event.h" |
| 18 #include "base/trace_event/trace_event_argument.h" | 18 #include "base/trace_event/trace_event_argument.h" |
| 19 #include "platform/scheduler/base/enqueue_order.h" | 19 #include "platform/scheduler/base/enqueue_order.h" |
| 20 #include "platform/scheduler/base/intrusive_heap.h" | 20 #include "platform/scheduler/base/intrusive_heap.h" |
| 21 #include "platform/scheduler/base/task_queue.h" |
| 21 #include "platform/wtf/Deque.h" | 22 #include "platform/wtf/Deque.h" |
| 22 #include "public/platform/scheduler/base/task_queue.h" | |
| 23 | 23 |
| 24 namespace blink { | 24 namespace blink { |
| 25 namespace scheduler { | 25 namespace scheduler { |
| 26 class LazyNow; | 26 class LazyNow; |
| 27 class TimeDomain; | 27 class TimeDomain; |
| 28 class TaskQueueManager; | 28 class TaskQueueManager; |
| 29 | 29 |
| 30 namespace internal { | 30 namespace internal { |
| 31 class WorkQueue; | 31 class WorkQueue; |
| 32 class WorkQueueSets; | 32 class WorkQueueSets; |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 const bool should_report_when_execution_blocked_; | 387 const bool should_report_when_execution_blocked_; |
| 388 | 388 |
| 389 DISALLOW_COPY_AND_ASSIGN(TaskQueueImpl); | 389 DISALLOW_COPY_AND_ASSIGN(TaskQueueImpl); |
| 390 }; | 390 }; |
| 391 | 391 |
| 392 } // namespace internal | 392 } // namespace internal |
| 393 } // namespace scheduler | 393 } // namespace scheduler |
| 394 } // namespace blink | 394 } // namespace blink |
| 395 | 395 |
| 396 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_ | 396 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_ |
| OLD | NEW |