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" |
(...skipping 16 matching lines...) Expand all Loading... |
27 #include "platform/scheduler/renderer/task_cost_estimator.h" | 27 #include "platform/scheduler/renderer/task_cost_estimator.h" |
28 #include "platform/scheduler/renderer/task_duration_metric_reporter.h" | 28 #include "platform/scheduler/renderer/task_duration_metric_reporter.h" |
29 #include "platform/scheduler/renderer/user_model.h" | 29 #include "platform/scheduler/renderer/user_model.h" |
30 #include "platform/scheduler/renderer/web_view_scheduler_impl.h" | 30 #include "platform/scheduler/renderer/web_view_scheduler_impl.h" |
31 #include "public/platform/scheduler/renderer/renderer_scheduler.h" | 31 #include "public/platform/scheduler/renderer/renderer_scheduler.h" |
32 | 32 |
33 namespace base { | 33 namespace base { |
34 namespace trace_event { | 34 namespace trace_event { |
35 class ConvertableToTraceFormat; | 35 class ConvertableToTraceFormat; |
36 } | 36 } |
37 } | 37 } // namespace base |
38 | 38 |
39 namespace blink { | 39 namespace blink { |
40 namespace scheduler { | 40 namespace scheduler { |
41 class AutoAdvancingVirtualTimeDomain; | 41 class AutoAdvancingVirtualTimeDomain; |
42 class RenderWidgetSchedulingState; | 42 class RenderWidgetSchedulingState; |
43 class WebViewSchedulerImpl; | 43 class WebViewSchedulerImpl; |
44 class TaskQueueThrottler; | 44 class TaskQueueThrottler; |
45 | 45 |
46 class PLATFORM_EXPORT RendererSchedulerImpl | 46 class PLATFORM_EXPORT RendererSchedulerImpl |
47 : public RendererScheduler, | 47 : public RendererScheduler, |
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
586 | 586 |
587 base::WeakPtrFactory<RendererSchedulerImpl> weak_factory_; | 587 base::WeakPtrFactory<RendererSchedulerImpl> weak_factory_; |
588 | 588 |
589 DISALLOW_COPY_AND_ASSIGN(RendererSchedulerImpl); | 589 DISALLOW_COPY_AND_ASSIGN(RendererSchedulerImpl); |
590 }; | 590 }; |
591 | 591 |
592 } // namespace scheduler | 592 } // namespace scheduler |
593 } // namespace blink | 593 } // namespace blink |
594 | 594 |
595 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_RENDERER_SCHEDU
LER_IMPL_H_ | 595 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_RENDERER_SCHEDU
LER_IMPL_H_ |
OLD | NEW |