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 <limits> | 8 #include <limits> |
9 | 9 |
10 #include "CCAnimationEvents.h" | 10 #include "CCAnimationEvents.h" |
11 #include "CCGraphicsContext.h" | 11 #include "CCGraphicsContext.h" |
12 #include "CCLayerTreeHostClient.h" | |
13 #include "CCLayerTreeHostCommon.h" | |
14 #include "IntRect.h" | 12 #include "IntRect.h" |
15 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
16 #include "base/hash_tables.h" | 14 #include "base/hash_tables.h" |
17 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
18 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
| 17 #include "cc/layer_tree_host_client.h" |
| 18 #include "cc/layer_tree_host_common.h" |
19 #include "cc/occlusion_tracker.h" | 19 #include "cc/occlusion_tracker.h" |
20 #include "cc/prioritized_texture_manager.h" | 20 #include "cc/prioritized_texture_manager.h" |
21 #include "cc/proxy.h" | 21 #include "cc/proxy.h" |
22 #include "cc/rate_limiter.h" | 22 #include "cc/rate_limiter.h" |
23 #include "cc/rendering_stats.h" | 23 #include "cc/rendering_stats.h" |
24 #include "cc/scoped_ptr_vector.h" | 24 #include "cc/scoped_ptr_vector.h" |
25 #include "third_party/skia/include/core/SkColor.h" | 25 #include "third_party/skia/include/core/SkColor.h" |
26 | 26 |
27 #if defined(COMPILER_GCC) | 27 #if defined(COMPILER_GCC) |
28 namespace BASE_HASH_NAMESPACE { | 28 namespace BASE_HASH_NAMESPACE { |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 size_t m_partialTextureUpdateRequests; | 273 size_t m_partialTextureUpdateRequests; |
274 | 274 |
275 static bool s_needsFilterContext; | 275 static bool s_needsFilterContext; |
276 | 276 |
277 DISALLOW_COPY_AND_ASSIGN(CCLayerTreeHost); | 277 DISALLOW_COPY_AND_ASSIGN(CCLayerTreeHost); |
278 }; | 278 }; |
279 | 279 |
280 } // namespace cc | 280 } // namespace cc |
281 | 281 |
282 #endif | 282 #endif |
OLD | NEW |