| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 class RasterTilePriorityQueue; | 67 class RasterTilePriorityQueue; |
| 68 class TileTaskWorkerPool; | 68 class TileTaskWorkerPool; |
| 69 class RenderPassDrawQuad; | 69 class RenderPassDrawQuad; |
| 70 class RenderingStatsInstrumentation; | 70 class RenderingStatsInstrumentation; |
| 71 class ResourcePool; | 71 class ResourcePool; |
| 72 class ScrollElasticityHelper; | 72 class ScrollElasticityHelper; |
| 73 class ScrollbarLayerImplBase; | 73 class ScrollbarLayerImplBase; |
| 74 class SwapPromise; | 74 class SwapPromise; |
| 75 class SwapPromiseMonitor; | 75 class SwapPromiseMonitor; |
| 76 class SynchronousTaskGraphRunner; | 76 class SynchronousTaskGraphRunner; |
| 77 class TaskGraphRunner; |
| 77 class TextureMailboxDeleter; | 78 class TextureMailboxDeleter; |
| 78 class TopControlsManager; | 79 class TopControlsManager; |
| 79 class UIResourceBitmap; | 80 class UIResourceBitmap; |
| 80 class UIResourceRequest; | 81 class UIResourceRequest; |
| 81 struct ScrollAndScaleSet; | 82 struct ScrollAndScaleSet; |
| 82 class Viewport; | 83 class Viewport; |
| 83 | 84 |
| 84 using BeginFrameCallbackList = std::vector<base::Closure>; | 85 using BeginFrameCallbackList = std::vector<base::Closure>; |
| 85 | 86 |
| 86 enum class GpuRasterizationStatus { | 87 enum class GpuRasterizationStatus { |
| (...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 870 std::unique_ptr<Viewport> viewport_; | 871 std::unique_ptr<Viewport> viewport_; |
| 871 | 872 |
| 872 LayerTreeMutator* mutator_; | 873 LayerTreeMutator* mutator_; |
| 873 | 874 |
| 874 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); | 875 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); |
| 875 }; | 876 }; |
| 876 | 877 |
| 877 } // namespace cc | 878 } // namespace cc |
| 878 | 879 |
| 879 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 880 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
| OLD | NEW |