| 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 COMPONENTS_SCHEDULER_RENDERER_RENDERER_SCHEDULER_IMPL_H_ | 5 #ifndef COMPONENTS_SCHEDULER_RENDERER_RENDERER_SCHEDULER_IMPL_H_ |
| 6 #define COMPONENTS_SCHEDULER_RENDERER_RENDERER_SCHEDULER_IMPL_H_ | 6 #define COMPONENTS_SCHEDULER_RENDERER_RENDERER_SCHEDULER_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/atomicops.h" | 8 #include "base/atomicops.h" |
| 9 #include "base/synchronization/lock.h" | 9 #include "base/synchronization/lock.h" |
| 10 #include "components/scheduler/base/pollable_thread_safe_flag.h" |
| 10 #include "components/scheduler/child/idle_helper.h" | 11 #include "components/scheduler/child/idle_helper.h" |
| 11 #include "components/scheduler/child/pollable_thread_safe_flag.h" | |
| 12 #include "components/scheduler/child/scheduler_helper.h" | 12 #include "components/scheduler/child/scheduler_helper.h" |
| 13 #include "components/scheduler/renderer/deadline_task_runner.h" | 13 #include "components/scheduler/renderer/deadline_task_runner.h" |
| 14 #include "components/scheduler/renderer/renderer_scheduler.h" | 14 #include "components/scheduler/renderer/renderer_scheduler.h" |
| 15 #include "components/scheduler/renderer/task_cost_estimator.h" | 15 #include "components/scheduler/renderer/task_cost_estimator.h" |
| 16 #include "components/scheduler/renderer/user_model.h" | 16 #include "components/scheduler/renderer/user_model.h" |
| 17 #include "components/scheduler/scheduler_export.h" | 17 #include "components/scheduler/scheduler_export.h" |
| 18 | 18 |
| 19 namespace base { | 19 namespace base { |
| 20 namespace trace_event { | 20 namespace trace_event { |
| 21 class ConvertableToTraceFormat; | 21 class ConvertableToTraceFormat; |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 | 314 |
| 315 PollableThreadSafeFlag policy_may_need_update_; | 315 PollableThreadSafeFlag policy_may_need_update_; |
| 316 base::WeakPtrFactory<RendererSchedulerImpl> weak_factory_; | 316 base::WeakPtrFactory<RendererSchedulerImpl> weak_factory_; |
| 317 | 317 |
| 318 DISALLOW_COPY_AND_ASSIGN(RendererSchedulerImpl); | 318 DISALLOW_COPY_AND_ASSIGN(RendererSchedulerImpl); |
| 319 }; | 319 }; |
| 320 | 320 |
| 321 } // namespace scheduler | 321 } // namespace scheduler |
| 322 | 322 |
| 323 #endif // COMPONENTS_SCHEDULER_RENDERER_RENDERER_SCHEDULER_IMPL_H_ | 323 #endif // COMPONENTS_SCHEDULER_RENDERER_RENDERER_SCHEDULER_IMPL_H_ |
| OLD | NEW |