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 CC_LAYER_TREE_HOST_H_ | 5 #ifndef CC_LAYER_TREE_HOST_H_ |
6 #define CC_LAYER_TREE_HOST_H_ | 6 #define CC_LAYER_TREE_HOST_H_ |
7 | 7 |
8 #include <limits> | 8 #include <limits> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/cancelable_callback.h" | 11 #include "base/cancelable_callback.h" |
12 #include "base/hash_tables.h" | 12 #include "base/hash_tables.h" |
13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
16 #include "base/time.h" | 16 #include "base/time.h" |
17 #include "cc/animation/animation_events.h" | 17 #include "cc/animation/animation_events.h" |
18 #include "cc/base/cc_export.h" | 18 #include "cc/base/cc_export.h" |
19 #include "cc/base/scoped_ptr_vector.h" | 19 #include "cc/base/scoped_ptr_vector.h" |
20 #include "cc/debug/rendering_stats.h" | 20 #include "cc/debug/rendering_stats.h" |
21 #include "cc/layer_tree_host_client.h" | 21 #include "cc/layer_tree_host_client.h" |
22 #include "cc/layer_tree_host_common.h" | 22 #include "cc/layer_tree_host_common.h" |
23 #include "cc/layer_tree_settings.h" | 23 #include "cc/layer_tree_settings.h" |
24 #include "cc/occlusion_tracker.h" | 24 #include "cc/occlusion_tracker.h" |
25 #include "cc/output_surface.h" | 25 #include "cc/output/output_surface.h" |
26 #include "cc/proxy.h" | 26 #include "cc/proxy.h" |
27 #include "cc/rate_limiter.h" | 27 #include "cc/rate_limiter.h" |
28 #include "skia/ext/refptr.h" | 28 #include "skia/ext/refptr.h" |
29 #include "third_party/skia/include/core/SkColor.h" | 29 #include "third_party/skia/include/core/SkColor.h" |
30 #include "third_party/skia/include/core/SkPicture.h" | 30 #include "third_party/skia/include/core/SkPicture.h" |
31 #include "ui/gfx/rect.h" | 31 #include "ui/gfx/rect.h" |
32 | 32 |
33 #if defined(COMPILER_GCC) | 33 #if defined(COMPILER_GCC) |
34 namespace BASE_HASH_NAMESPACE { | 34 namespace BASE_HASH_NAMESPACE { |
35 template <> | 35 template <> |
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 size_t partial_texture_update_requests_; | 316 size_t partial_texture_update_requests_; |
317 | 317 |
318 scoped_ptr<AnimationRegistrar> animation_registrar_; | 318 scoped_ptr<AnimationRegistrar> animation_registrar_; |
319 | 319 |
320 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); | 320 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); |
321 }; | 321 }; |
322 | 322 |
323 } // namespace cc | 323 } // namespace cc |
324 | 324 |
325 #endif // CC_LAYER_TREE_HOST_H_ | 325 #endif // CC_LAYER_TREE_HOST_H_ |
OLD | NEW |