| 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_PUBLIC_PLATFORM_SCHEDULER_RENDERER_RENDERER_SCHEDULER
_H_ | 5 #ifndef THIRD_PARTY_WEBKIT_PUBLIC_PLATFORM_SCHEDULER_RENDERER_RENDERER_SCHEDULER
_H_ |
| 6 #define THIRD_PARTY_WEBKIT_PUBLIC_PLATFORM_SCHEDULER_RENDERER_RENDERER_SCHEDULER
_H_ | 6 #define THIRD_PARTY_WEBKIT_PUBLIC_PLATFORM_SCHEDULER_RENDERER_RENDERER_SCHEDULER
_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/message_loop/message_loop.h" | 11 #include "base/message_loop/message_loop.h" |
| 12 #include "base/single_thread_task_runner.h" | 12 #include "base/single_thread_task_runner.h" |
| 13 #include "base/threading/thread.h" | 13 #include "base/threading/thread.h" |
| 14 #include "public/platform/WebCommon.h" | 14 #include "public/platform/WebCommon.h" |
| 15 #include "public/platform/WebInputEventResult.h" | 15 #include "public/platform/WebInputEventResult.h" |
| 16 #include "public/platform/scheduler/child/child_scheduler.h" | 16 #include "public/platform/scheduler/child/child_scheduler.h" |
| 17 #include "public/platform/scheduler/child/single_thread_idle_task_runner.h" | 17 #include "public/platform/scheduler/child/single_thread_idle_task_runner.h" |
| 18 #include "public/platform/scheduler/renderer/render_widget_scheduling_state.h" | 18 #include "public/platform/scheduler/renderer/render_widget_scheduling_state.h" |
| 19 #include "v8/include/v8.h" | 19 #include "v8/include/v8.h" |
| 20 | 20 |
| 21 namespace base { | 21 namespace base { |
| 22 namespace trace_event { | 22 namespace trace_event { |
| 23 class BlameContext; | 23 class BlameContext; |
| 24 } | 24 } |
| 25 } | 25 } // namespace base |
| 26 | 26 |
| 27 namespace cc { | 27 namespace cc { |
| 28 struct BeginFrameArgs; | 28 struct BeginFrameArgs; |
| 29 } | 29 } |
| 30 | 30 |
| 31 namespace blink { | 31 namespace blink { |
| 32 class WebThread; | 32 class WebThread; |
| 33 class WebInputEvent; | 33 class WebInputEvent; |
| 34 } | 34 } // namespace blink |
| 35 | 35 |
| 36 namespace blink { | 36 namespace blink { |
| 37 namespace scheduler { | 37 namespace scheduler { |
| 38 | 38 |
| 39 class RenderWidgetSchedulingState; | 39 class RenderWidgetSchedulingState; |
| 40 | 40 |
| 41 class BLINK_PLATFORM_EXPORT RendererScheduler : public ChildScheduler { | 41 class BLINK_PLATFORM_EXPORT RendererScheduler : public ChildScheduler { |
| 42 public: | 42 public: |
| 43 class BLINK_PLATFORM_EXPORT RAILModeObserver { | 43 class BLINK_PLATFORM_EXPORT RAILModeObserver { |
| 44 public: | 44 public: |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 | 203 |
| 204 protected: | 204 protected: |
| 205 RendererScheduler(); | 205 RendererScheduler(); |
| 206 DISALLOW_COPY_AND_ASSIGN(RendererScheduler); | 206 DISALLOW_COPY_AND_ASSIGN(RendererScheduler); |
| 207 }; | 207 }; |
| 208 | 208 |
| 209 } // namespace scheduler | 209 } // namespace scheduler |
| 210 } // namespace blink | 210 } // namespace blink |
| 211 | 211 |
| 212 #endif // THIRD_PARTY_WEBKIT_PUBLIC_PLATFORM_SCHEDULER_RENDERER_RENDERER_SCHEDU
LER_H_ | 212 #endif // THIRD_PARTY_WEBKIT_PUBLIC_PLATFORM_SCHEDULER_RENDERER_RENDERER_SCHEDU
LER_H_ |
| OLD | NEW |