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_TREES_LAYER_TREE_HOST_IMPL_H_ | 5 #ifndef CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
6 #define CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 6 #define CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
7 | 7 |
| 8 #include <stddef.h> |
| 9 |
8 #include <set> | 10 #include <set> |
9 #include <string> | 11 #include <string> |
10 #include <vector> | 12 #include <vector> |
11 | 13 |
12 #include "base/basictypes.h" | |
13 #include "base/containers/hash_tables.h" | 14 #include "base/containers/hash_tables.h" |
| 15 #include "base/macros.h" |
14 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
15 #include "base/time/time.h" | 17 #include "base/time/time.h" |
16 #include "cc/animation/animation_events.h" | 18 #include "cc/animation/animation_events.h" |
17 #include "cc/animation/animation_registrar.h" | 19 #include "cc/animation/animation_registrar.h" |
18 #include "cc/animation/scrollbar_animation_controller.h" | 20 #include "cc/animation/scrollbar_animation_controller.h" |
19 #include "cc/base/cc_export.h" | 21 #include "cc/base/cc_export.h" |
20 #include "cc/base/synced_property.h" | 22 #include "cc/base/synced_property.h" |
21 #include "cc/debug/frame_timing_tracker.h" | 23 #include "cc/debug/frame_timing_tracker.h" |
22 #include "cc/debug/micro_benchmark_controller_impl.h" | 24 #include "cc/debug/micro_benchmark_controller_impl.h" |
23 #include "cc/input/input_handler.h" | 25 #include "cc/input/input_handler.h" |
(...skipping 803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
827 scoped_ptr<FrameTimingTracker> frame_timing_tracker_; | 829 scoped_ptr<FrameTimingTracker> frame_timing_tracker_; |
828 | 830 |
829 scoped_ptr<Viewport> viewport_; | 831 scoped_ptr<Viewport> viewport_; |
830 | 832 |
831 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); | 833 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); |
832 }; | 834 }; |
833 | 835 |
834 } // namespace cc | 836 } // namespace cc |
835 | 837 |
836 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 838 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
OLD | NEW |