| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_RENDERER_RENDERER_SCHEDULER
_IMPL_H_ | 5 #ifndef THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_RENDERER_SCHEDULER
_IMPL_H_ |
| 6 #define THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_RENDERER_SCHEDULER
_IMPL_H_ | 6 #define THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_RENDERER_SCHEDULER
_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/atomicops.h" | 8 #include "base/atomicops.h" |
| 9 #include "base/gtest_prod_util.h" | 9 #include "base/gtest_prod_util.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/message_loop/message_loop.h" |
| 11 #include "base/synchronization/lock.h" | 12 #include "base/synchronization/lock.h" |
| 12 #include "base/trace_event/trace_log.h" | 13 #include "base/trace_event/trace_log.h" |
| 13 #include "device/base/synchronization/shared_memory_seqlock_buffer.h" | 14 #include "device/base/synchronization/shared_memory_seqlock_buffer.h" |
| 14 #include "platform/scheduler/base/pollable_thread_safe_flag.h" | 15 #include "platform/scheduler/base/pollable_thread_safe_flag.h" |
| 15 #include "platform/scheduler/base/queueing_time_estimator.h" | 16 #include "platform/scheduler/base/queueing_time_estimator.h" |
| 16 #include "platform/scheduler/base/task_time_observer.h" | 17 #include "platform/scheduler/base/task_time_observer.h" |
| 17 #include "platform/scheduler/base/thread_load_tracker.h" | 18 #include "platform/scheduler/base/thread_load_tracker.h" |
| 18 #include "platform/scheduler/child/idle_canceled_delayed_task_sweeper.h" | 19 #include "platform/scheduler/child/idle_canceled_delayed_task_sweeper.h" |
| 19 #include "platform/scheduler/child/idle_helper.h" | 20 #include "platform/scheduler/child/idle_helper.h" |
| 20 #include "platform/scheduler/child/scheduler_helper.h" | 21 #include "platform/scheduler/child/scheduler_helper.h" |
| (...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 | 556 |
| 556 base::WeakPtrFactory<RendererSchedulerImpl> weak_factory_; | 557 base::WeakPtrFactory<RendererSchedulerImpl> weak_factory_; |
| 557 | 558 |
| 558 DISALLOW_COPY_AND_ASSIGN(RendererSchedulerImpl); | 559 DISALLOW_COPY_AND_ASSIGN(RendererSchedulerImpl); |
| 559 }; | 560 }; |
| 560 | 561 |
| 561 } // namespace scheduler | 562 } // namespace scheduler |
| 562 } // namespace blink | 563 } // namespace blink |
| 563 | 564 |
| 564 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_RENDERER_SCHEDU
LER_IMPL_H_ | 565 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_RENDERER_SCHEDU
LER_IMPL_H_ |
| OLD | NEW |