| 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 CCLayerTreeHost_h | 5 #ifndef CCLayerTreeHost_h |
| 6 #define CCLayerTreeHost_h | 6 #define CCLayerTreeHost_h |
| 7 | 7 |
| 8 #include "CCAnimationEvents.h" | 8 #include "CCAnimationEvents.h" |
| 9 #include "CCGraphicsContext.h" | 9 #include "CCGraphicsContext.h" |
| 10 #include "CCLayerTreeHostClient.h" | 10 #include "CCLayerTreeHostClient.h" |
| 11 #include "CCLayerTreeHostCommon.h" | 11 #include "CCLayerTreeHostCommon.h" |
| 12 #include "CCOcclusionTracker.h" | 12 #include "CCOcclusionTracker.h" |
| 13 #include "CCPrioritizedTextureManager.h" | 13 #include "CCPrioritizedTextureManager.h" |
| 14 #include "CCProxy.h" | 14 #include "CCProxy.h" |
| 15 #include "CCRenderingStats.h" | 15 #include "CCRenderingStats.h" |
| 16 #include "IntRect.h" | 16 #include "IntRect.h" |
| 17 #include "RateLimiter.h" | 17 #include "RateLimiter.h" |
| 18 #include "SkColor.h" | 18 #include "SkColor.h" |
| 19 #include <limits> | 19 #include <limits> |
| 20 #include <wtf/HashMap.h> | 20 #include <wtf/HashMap.h> |
| 21 #include <wtf/OwnPtr.h> | 21 #include <wtf/OwnPtr.h> |
| 22 #include <wtf/PassOwnPtr.h> | 22 #include <wtf/PassOwnPtr.h> |
| 23 #include <wtf/PassRefPtr.h> | 23 #include <wtf/PassRefPtr.h> |
| 24 | 24 |
| 25 namespace WebCore { | 25 namespace cc { |
| 26 | 26 |
| 27 class CCFontAtlas; | 27 class CCFontAtlas; |
| 28 class CCLayerChromium; | 28 class CCLayerChromium; |
| 29 class CCLayerTreeHostImpl; | 29 class CCLayerTreeHostImpl; |
| 30 class CCLayerTreeHostImplClient; | 30 class CCLayerTreeHostImplClient; |
| 31 class CCPrioritizedTextureManager; | 31 class CCPrioritizedTextureManager; |
| 32 class CCTextureUpdateQueue; | 32 class CCTextureUpdateQueue; |
| 33 class HeadsUpDisplayLayerChromium; | 33 class HeadsUpDisplayLayerChromium; |
| 34 class Region; | 34 class Region; |
| 35 struct CCScrollAndScaleSet; | 35 struct CCScrollAndScaleSet; |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 | 284 |
| 285 TextureList m_deleteTextureAfterCommitList; | 285 TextureList m_deleteTextureAfterCommitList; |
| 286 size_t m_partialTextureUpdateRequests; | 286 size_t m_partialTextureUpdateRequests; |
| 287 | 287 |
| 288 static bool s_needsFilterContext; | 288 static bool s_needsFilterContext; |
| 289 }; | 289 }; |
| 290 | 290 |
| 291 } | 291 } |
| 292 | 292 |
| 293 #endif | 293 #endif |
| OLD | NEW |