| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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_IMPL_H_ | 5 #ifndef CC_TREES_LAYER_TREE_IMPL_H_ |
| 6 #define CC_TREES_LAYER_TREE_IMPL_H_ | 6 #define CC_TREES_LAYER_TREE_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 } | 33 } |
| 34 | 34 |
| 35 namespace cc { | 35 namespace cc { |
| 36 | 36 |
| 37 class ContextProvider; | 37 class ContextProvider; |
| 38 class DebugRectHistory; | 38 class DebugRectHistory; |
| 39 class FrameRateCounter; | 39 class FrameRateCounter; |
| 40 class HeadsUpDisplayLayerImpl; | 40 class HeadsUpDisplayLayerImpl; |
| 41 class ImageDecodeController; | 41 class ImageDecodeController; |
| 42 class LayerExternalScrollOffsetListener; | 42 class LayerExternalScrollOffsetListener; |
| 43 class LayerScrollOffsetDelegate; | |
| 44 class LayerTreeDebugState; | 43 class LayerTreeDebugState; |
| 45 class LayerTreeImpl; | 44 class LayerTreeImpl; |
| 46 class LayerTreeSettings; | 45 class LayerTreeSettings; |
| 47 class MemoryHistory; | 46 class MemoryHistory; |
| 48 class OutputSurface; | 47 class OutputSurface; |
| 49 class PageScaleAnimation; | 48 class PageScaleAnimation; |
| 50 class PictureLayerImpl; | 49 class PictureLayerImpl; |
| 51 class TaskRunnerProvider; | 50 class TaskRunnerProvider; |
| 52 class ResourceProvider; | 51 class ResourceProvider; |
| 53 class TileManager; | 52 class TileManager; |
| (...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 | 585 |
| 587 std::unique_ptr<PendingPageScaleAnimation> pending_page_scale_animation_; | 586 std::unique_ptr<PendingPageScaleAnimation> pending_page_scale_animation_; |
| 588 | 587 |
| 589 private: | 588 private: |
| 590 DISALLOW_COPY_AND_ASSIGN(LayerTreeImpl); | 589 DISALLOW_COPY_AND_ASSIGN(LayerTreeImpl); |
| 591 }; | 590 }; |
| 592 | 591 |
| 593 } // namespace cc | 592 } // namespace cc |
| 594 | 593 |
| 595 #endif // CC_TREES_LAYER_TREE_IMPL_H_ | 594 #endif // CC_TREES_LAYER_TREE_IMPL_H_ |
| OLD | NEW |