| 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 <bitset> | 10 #include <bitset> |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 class AnimationHost; | 54 class AnimationHost; |
| 55 class CompletionEvent; | 55 class CompletionEvent; |
| 56 class CompositorFrameMetadata; | 56 class CompositorFrameMetadata; |
| 57 class DebugRectHistory; | 57 class DebugRectHistory; |
| 58 class EvictionTilePriorityQueue; | 58 class EvictionTilePriorityQueue; |
| 59 class FrameRateCounter; | 59 class FrameRateCounter; |
| 60 class LayerImpl; | 60 class LayerImpl; |
| 61 class LayerTreeImpl; | 61 class LayerTreeImpl; |
| 62 class MemoryHistory; | 62 class MemoryHistory; |
| 63 class PageScaleAnimation; | 63 class PageScaleAnimation; |
| 64 class PendingTreeDurationHistogramTimer; |
| 64 class PictureLayerImpl; | 65 class PictureLayerImpl; |
| 65 class RasterTilePriorityQueue; | 66 class RasterTilePriorityQueue; |
| 66 class TileTaskManager; | 67 class TileTaskManager; |
| 67 class RasterBufferProvider; | 68 class RasterBufferProvider; |
| 68 class RenderPassDrawQuad; | 69 class RenderPassDrawQuad; |
| 69 class RenderingStatsInstrumentation; | 70 class RenderingStatsInstrumentation; |
| 70 class ResourcePool; | 71 class ResourcePool; |
| 71 class ScrollElasticityHelper; | 72 class ScrollElasticityHelper; |
| 72 class ScrollbarLayerImplBase; | 73 class ScrollbarLayerImplBase; |
| 73 class SwapPromise; | 74 class SwapPromise; |
| (...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 845 bool requires_high_res_to_draw_; | 846 bool requires_high_res_to_draw_; |
| 846 bool is_likely_to_require_a_draw_; | 847 bool is_likely_to_require_a_draw_; |
| 847 | 848 |
| 848 std::unique_ptr<Viewport> viewport_; | 849 std::unique_ptr<Viewport> viewport_; |
| 849 | 850 |
| 850 LayerTreeMutator* mutator_; | 851 LayerTreeMutator* mutator_; |
| 851 | 852 |
| 852 bool has_fixed_raster_scale_blurry_content_; | 853 bool has_fixed_raster_scale_blurry_content_; |
| 853 std::bitset<kFixedRasterScaleAttemptedScaleChangeHistoryCount> | 854 std::bitset<kFixedRasterScaleAttemptedScaleChangeHistoryCount> |
| 854 fixed_raster_scale_attempted_scale_change_history_; | 855 fixed_raster_scale_attempted_scale_change_history_; |
| 856 std::unique_ptr<PendingTreeDurationHistogramTimer> |
| 857 pending_tree_duration_timer_; |
| 855 | 858 |
| 856 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); | 859 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); |
| 857 }; | 860 }; |
| 858 | 861 |
| 859 } // namespace cc | 862 } // namespace cc |
| 860 | 863 |
| 861 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 864 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
| OLD | NEW |