| 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 <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "cc/input/layer_scroll_offset_delegate.h" | 24 #include "cc/input/layer_scroll_offset_delegate.h" |
| 25 #include "cc/input/top_controls_manager_client.h" | 25 #include "cc/input/top_controls_manager_client.h" |
| 26 #include "cc/layers/layer_lists.h" | 26 #include "cc/layers/layer_lists.h" |
| 27 #include "cc/layers/render_pass_sink.h" | 27 #include "cc/layers/render_pass_sink.h" |
| 28 #include "cc/output/begin_frame_args.h" | 28 #include "cc/output/begin_frame_args.h" |
| 29 #include "cc/output/managed_memory_policy.h" | 29 #include "cc/output/managed_memory_policy.h" |
| 30 #include "cc/output/output_surface_client.h" | 30 #include "cc/output/output_surface_client.h" |
| 31 #include "cc/output/renderer.h" | 31 #include "cc/output/renderer.h" |
| 32 #include "cc/quads/render_pass.h" | 32 #include "cc/quads/render_pass.h" |
| 33 #include "cc/resources/resource_provider.h" | 33 #include "cc/resources/resource_provider.h" |
| 34 #include "cc/resources/tile_manager.h" | |
| 35 #include "cc/resources/ui_resource_client.h" | 34 #include "cc/resources/ui_resource_client.h" |
| 36 #include "cc/scheduler/commit_earlyout_reason.h" | 35 #include "cc/scheduler/commit_earlyout_reason.h" |
| 37 #include "cc/scheduler/draw_result.h" | 36 #include "cc/scheduler/draw_result.h" |
| 38 #include "cc/scheduler/video_frame_controller.h" | 37 #include "cc/scheduler/video_frame_controller.h" |
| 38 #include "cc/tiles/tile_manager.h" |
| 39 #include "cc/trees/layer_tree_settings.h" | 39 #include "cc/trees/layer_tree_settings.h" |
| 40 #include "cc/trees/proxy.h" | 40 #include "cc/trees/proxy.h" |
| 41 #include "skia/ext/refptr.h" | 41 #include "skia/ext/refptr.h" |
| 42 #include "third_party/skia/include/core/SkColor.h" | 42 #include "third_party/skia/include/core/SkColor.h" |
| 43 #include "ui/gfx/geometry/rect.h" | 43 #include "ui/gfx/geometry/rect.h" |
| 44 | 44 |
| 45 namespace gfx { | 45 namespace gfx { |
| 46 class ScrollOffset; | 46 class ScrollOffset; |
| 47 } | 47 } |
| 48 | 48 |
| (...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 766 scoped_ptr<FrameTimingTracker> frame_timing_tracker_; | 766 scoped_ptr<FrameTimingTracker> frame_timing_tracker_; |
| 767 | 767 |
| 768 scoped_ptr<Viewport> viewport_; | 768 scoped_ptr<Viewport> viewport_; |
| 769 | 769 |
| 770 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); | 770 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); |
| 771 }; | 771 }; |
| 772 | 772 |
| 773 } // namespace cc | 773 } // namespace cc |
| 774 | 774 |
| 775 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 775 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
| OLD | NEW |