OLD | NEW |
1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 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 CCLayerTreeHostImpl_h | 5 #ifndef CCLayerTreeHostImpl_h |
6 #define CCLayerTreeHostImpl_h | 6 #define CCLayerTreeHostImpl_h |
7 | 7 |
8 #include "CCAnimationEvents.h" | 8 #include "CCAnimationEvents.h" |
9 #include "CCInputHandler.h" | 9 #include "CCInputHandler.h" |
10 #include "CCLayerSorter.h" | 10 #include "CCLayerSorter.h" |
11 #include "CCRenderPass.h" | 11 #include "CCRenderPass.h" |
12 #include "CCRenderPassSink.h" | 12 #include "CCRenderPassSink.h" |
13 #include "CCRenderer.h" | 13 #include "CCRenderer.h" |
14 #include "SkColor.h" | 14 #include "SkColor.h" |
15 #include <public/WebCompositorOutputSurfaceClient.h> | 15 #include <public/WebCompositorOutputSurfaceClient.h> |
16 #include <wtf/PassOwnPtr.h> | 16 #include <wtf/PassOwnPtr.h> |
17 #include <wtf/RefPtr.h> | 17 #include <wtf/RefPtr.h> |
18 | 18 |
19 namespace WebCore { | 19 namespace cc { |
20 | 20 |
21 class CCCompletionEvent; | 21 class CCCompletionEvent; |
22 class CCDebugRectHistory; | 22 class CCDebugRectHistory; |
23 class CCFrameRateCounter; | 23 class CCFrameRateCounter; |
24 class CCHeadsUpDisplayLayerImpl; | 24 class CCHeadsUpDisplayLayerImpl; |
25 class CCLayerImpl; | 25 class CCLayerImpl; |
26 class CCLayerTreeHostImplTimeSourceAdapter; | 26 class CCLayerTreeHostImplTimeSourceAdapter; |
27 class CCPageScaleAnimation; | 27 class CCPageScaleAnimation; |
28 class CCRenderPassDrawQuad; | 28 class CCRenderPassDrawQuad; |
29 class CCResourceProvider; | 29 class CCResourceProvider; |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 // rendering and input event hit testing. | 285 // rendering and input event hit testing. |
286 CCLayerList m_renderSurfaceLayerList; | 286 CCLayerList m_renderSurfaceLayerList; |
287 | 287 |
288 OwnPtr<CCFrameRateCounter> m_fpsCounter; | 288 OwnPtr<CCFrameRateCounter> m_fpsCounter; |
289 OwnPtr<CCDebugRectHistory> m_debugRectHistory; | 289 OwnPtr<CCDebugRectHistory> m_debugRectHistory; |
290 }; | 290 }; |
291 | 291 |
292 }; | 292 }; |
293 | 293 |
294 #endif | 294 #endif |
OLD | NEW |