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 20 matching lines...) Expand all Loading... |
31 } | 31 } |
32 } | 32 } |
33 | 33 |
34 namespace cc { | 34 namespace cc { |
35 | 35 |
36 class ContextProvider; | 36 class ContextProvider; |
37 class DebugRectHistory; | 37 class DebugRectHistory; |
38 class FrameRateCounter; | 38 class FrameRateCounter; |
39 class HeadsUpDisplayLayerImpl; | 39 class HeadsUpDisplayLayerImpl; |
40 class ImageDecodeController; | 40 class ImageDecodeController; |
41 class LayerExternalScrollOffsetListener; | |
42 class LayerTreeDebugState; | 41 class LayerTreeDebugState; |
43 class LayerTreeImpl; | 42 class LayerTreeImpl; |
44 class LayerTreeSettings; | 43 class LayerTreeSettings; |
45 class MemoryHistory; | 44 class MemoryHistory; |
46 class PageScaleAnimation; | |
47 class PictureLayerImpl; | 45 class PictureLayerImpl; |
48 class TaskRunnerProvider; | 46 class TaskRunnerProvider; |
49 class ResourceProvider; | 47 class ResourceProvider; |
50 class TileManager; | 48 class TileManager; |
51 class UIResourceRequest; | 49 class UIResourceRequest; |
52 class VideoFrameControllerClient; | 50 class VideoFrameControllerClient; |
53 struct PendingPageScaleAnimation; | 51 struct PendingPageScaleAnimation; |
54 | 52 |
55 typedef std::vector<UIResourceRequest> UIResourceRequestQueue; | 53 typedef std::vector<UIResourceRequest> UIResourceRequestQueue; |
56 typedef SyncedProperty<AdditionGroup<float>> SyncedBrowserControls; | 54 typedef SyncedProperty<AdditionGroup<float>> SyncedBrowserControls; |
(...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
563 | 561 |
564 std::unique_ptr<PendingPageScaleAnimation> pending_page_scale_animation_; | 562 std::unique_ptr<PendingPageScaleAnimation> pending_page_scale_animation_; |
565 | 563 |
566 private: | 564 private: |
567 DISALLOW_COPY_AND_ASSIGN(LayerTreeImpl); | 565 DISALLOW_COPY_AND_ASSIGN(LayerTreeImpl); |
568 }; | 566 }; |
569 | 567 |
570 } // namespace cc | 568 } // namespace cc |
571 | 569 |
572 #endif // CC_TREES_LAYER_TREE_IMPL_H_ | 570 #endif // CC_TREES_LAYER_TREE_IMPL_H_ |
OLD | NEW |