| 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> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #include "cc/resources/ui_resource_client.h" | 34 #include "cc/resources/ui_resource_client.h" |
| 35 #include "cc/scheduler/begin_frame_tracker.h" | 35 #include "cc/scheduler/begin_frame_tracker.h" |
| 36 #include "cc/scheduler/commit_earlyout_reason.h" | 36 #include "cc/scheduler/commit_earlyout_reason.h" |
| 37 #include "cc/scheduler/draw_result.h" | 37 #include "cc/scheduler/draw_result.h" |
| 38 #include "cc/scheduler/video_frame_controller.h" | 38 #include "cc/scheduler/video_frame_controller.h" |
| 39 #include "cc/tiles/image_decode_controller.h" | 39 #include "cc/tiles/image_decode_controller.h" |
| 40 #include "cc/tiles/tile_manager.h" | 40 #include "cc/tiles/tile_manager.h" |
| 41 #include "cc/trees/layer_tree_settings.h" | 41 #include "cc/trees/layer_tree_settings.h" |
| 42 #include "cc/trees/mutator_host_client.h" | 42 #include "cc/trees/mutator_host_client.h" |
| 43 #include "cc/trees/task_runner_provider.h" | 43 #include "cc/trees/task_runner_provider.h" |
| 44 #include "skia/ext/refptr.h" | |
| 45 #include "third_party/skia/include/core/SkColor.h" | |
| 46 #include "ui/gfx/geometry/rect.h" | 44 #include "ui/gfx/geometry/rect.h" |
| 47 | 45 |
| 48 namespace gfx { | 46 namespace gfx { |
| 49 class ScrollOffset; | 47 class ScrollOffset; |
| 50 } | 48 } |
| 51 | 49 |
| 52 namespace cc { | 50 namespace cc { |
| 53 | 51 |
| 54 class AnimationEvents; | 52 class AnimationEvents; |
| 55 class AnimationHost; | 53 class AnimationHost; |
| (...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 843 std::unique_ptr<Viewport> viewport_; | 841 std::unique_ptr<Viewport> viewport_; |
| 844 | 842 |
| 845 LayerTreeMutator* mutator_; | 843 LayerTreeMutator* mutator_; |
| 846 | 844 |
| 847 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); | 845 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); |
| 848 }; | 846 }; |
| 849 | 847 |
| 850 } // namespace cc | 848 } // namespace cc |
| 851 | 849 |
| 852 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 850 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
| OLD | NEW |