| 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 <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/containers/hash_tables.h" | 12 #include "base/containers/hash_tables.h" |
| 13 #include "base/values.h" | 13 #include "base/values.h" |
| 14 #include "cc/base/scoped_ptr_vector.h" | 14 #include "cc/base/scoped_ptr_vector.h" |
| 15 #include "cc/base/swap_promise.h" | |
| 16 #include "cc/base/synced_property.h" | 15 #include "cc/base/synced_property.h" |
| 16 #include "cc/input/layer_selection_bound.h" |
| 17 #include "cc/layers/layer_impl.h" | 17 #include "cc/layers/layer_impl.h" |
| 18 #include "cc/output/begin_frame_args.h" |
| 18 #include "cc/output/renderer.h" | 19 #include "cc/output/renderer.h" |
| 20 #include "cc/output/swap_promise.h" |
| 19 #include "cc/resources/ui_resource_client.h" | 21 #include "cc/resources/ui_resource_client.h" |
| 22 #include "cc/trees/layer_tree_host_impl.h" |
| 20 | 23 |
| 21 namespace base { | 24 namespace base { |
| 22 namespace trace_event { | 25 namespace trace_event { |
| 23 class TracedValue; | 26 class TracedValue; |
| 24 } | 27 } |
| 25 } | 28 } |
| 26 | 29 |
| 27 namespace cc { | 30 namespace cc { |
| 28 | 31 |
| 29 class ContextProvider; | 32 class ContextProvider; |
| 30 class DebugRectHistory; | 33 class DebugRectHistory; |
| 31 class FrameRateCounter; | 34 class FrameRateCounter; |
| 32 class HeadsUpDisplayLayerImpl; | 35 class HeadsUpDisplayLayerImpl; |
| 33 class LayerScrollOffsetDelegateProxy; | 36 class LayerScrollOffsetDelegateProxy; |
| 34 class LayerTreeDebugState; | 37 class LayerTreeDebugState; |
| 35 class LayerTreeHostImpl; | |
| 36 class LayerTreeImpl; | 38 class LayerTreeImpl; |
| 37 class LayerTreeSettings; | 39 class LayerTreeSettings; |
| 38 class MemoryHistory; | 40 class MemoryHistory; |
| 39 class OutputSurface; | 41 class OutputSurface; |
| 40 class PageScaleAnimation; | 42 class PageScaleAnimation; |
| 41 class PaintTimeCounter; | 43 class PaintTimeCounter; |
| 42 class PictureLayerImpl; | 44 class PictureLayerImpl; |
| 43 class Proxy; | 45 class Proxy; |
| 44 class ResourceProvider; | 46 class ResourceProvider; |
| 45 class TileManager; | 47 class TileManager; |
| (...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 | 418 |
| 417 scoped_ptr<PendingPageScaleAnimation> pending_page_scale_animation_; | 419 scoped_ptr<PendingPageScaleAnimation> pending_page_scale_animation_; |
| 418 | 420 |
| 419 private: | 421 private: |
| 420 DISALLOW_COPY_AND_ASSIGN(LayerTreeImpl); | 422 DISALLOW_COPY_AND_ASSIGN(LayerTreeImpl); |
| 421 }; | 423 }; |
| 422 | 424 |
| 423 } // namespace cc | 425 } // namespace cc |
| 424 | 426 |
| 425 #endif // CC_TREES_LAYER_TREE_IMPL_H_ | 427 #endif // CC_TREES_LAYER_TREE_IMPL_H_ |
| OLD | NEW |