| 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" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 namespace trace_event { | 21 namespace trace_event { |
| 22 class BlameContext; | 22 class BlameContext; |
| 23 } | 23 } |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace cc { | 26 namespace cc { |
| 27 struct BeginFrameArgs; | 27 struct BeginFrameArgs; |
| 28 } | 28 } |
| 29 | 29 |
| 30 namespace blink { | 30 namespace blink { |
| 31 class WebLocalFrame; | |
| 32 class WebThread; | 31 class WebThread; |
| 33 } | 32 } |
| 34 | 33 |
| 35 namespace blink { | 34 namespace blink { |
| 36 namespace scheduler { | 35 namespace scheduler { |
| 37 | 36 |
| 38 class RenderWidgetSchedulingState; | 37 class RenderWidgetSchedulingState; |
| 39 | 38 |
| 40 class BLINK_PLATFORM_EXPORT RendererScheduler : public ChildScheduler { | 39 class BLINK_PLATFORM_EXPORT RendererScheduler : public ChildScheduler { |
| 41 public: | 40 public: |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 | 187 |
| 189 protected: | 188 protected: |
| 190 RendererScheduler(); | 189 RendererScheduler(); |
| 191 DISALLOW_COPY_AND_ASSIGN(RendererScheduler); | 190 DISALLOW_COPY_AND_ASSIGN(RendererScheduler); |
| 192 }; | 191 }; |
| 193 | 192 |
| 194 } // namespace scheduler | 193 } // namespace scheduler |
| 195 } // namespace blink | 194 } // namespace blink |
| 196 | 195 |
| 197 #endif // THIRD_PARTY_WEBKIT_PUBLIC_PLATFORM_SCHEDULER_RENDERER_RENDERER_SCHEDU
LER_H_ | 196 #endif // THIRD_PARTY_WEBKIT_PUBLIC_PLATFORM_SCHEDULER_RENDERER_RENDERER_SCHEDU
LER_H_ |
| OLD | NEW |