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 <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/time.h" | 13 #include "base/time/time.h" |
14 #include "cc/animation/animation_events.h" | 14 #include "cc/animation/animation_events.h" |
15 #include "cc/animation/animation_registrar.h" | 15 #include "cc/animation/animation_registrar.h" |
16 #include "cc/base/cc_export.h" | 16 #include "cc/base/cc_export.h" |
17 #include "cc/input/input_handler.h" | 17 #include "cc/input/input_handler.h" |
18 #include "cc/input/layer_scroll_offset_delegate.h" | 18 #include "cc/input/layer_scroll_offset_delegate.h" |
19 #include "cc/input/top_controls_manager_client.h" | 19 #include "cc/input/top_controls_manager_client.h" |
20 #include "cc/layers/layer_lists.h" | 20 #include "cc/layers/layer_lists.h" |
21 #include "cc/layers/render_pass_sink.h" | 21 #include "cc/layers/render_pass_sink.h" |
22 #include "cc/output/begin_frame_args.h" | 22 #include "cc/output/begin_frame_args.h" |
23 #include "cc/output/output_surface_client.h" | 23 #include "cc/output/output_surface_client.h" |
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
533 scoped_ptr<AnimationRegistrar> animation_registrar_; | 533 scoped_ptr<AnimationRegistrar> animation_registrar_; |
534 | 534 |
535 RenderingStatsInstrumentation* rendering_stats_instrumentation_; | 535 RenderingStatsInstrumentation* rendering_stats_instrumentation_; |
536 | 536 |
537 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); | 537 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); |
538 }; | 538 }; |
539 | 539 |
540 } // namespace cc | 540 } // namespace cc |
541 | 541 |
542 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 542 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
OLD | NEW |