| 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 <list> | 8 #include <list> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 class LayerTreeDebugState; | 35 class LayerTreeDebugState; |
| 36 class LayerTreeHostImpl; | 36 class LayerTreeHostImpl; |
| 37 class LayerTreeImpl; | 37 class LayerTreeImpl; |
| 38 class LayerTreeSettings; | 38 class LayerTreeSettings; |
| 39 class MemoryHistory; | 39 class MemoryHistory; |
| 40 class OutputSurface; | 40 class OutputSurface; |
| 41 class PaintTimeCounter; | 41 class PaintTimeCounter; |
| 42 class Proxy; | 42 class Proxy; |
| 43 class ResourceProvider; | 43 class ResourceProvider; |
| 44 class TileManager; | 44 class TileManager; |
| 45 class UIResourceRequest; | |
| 46 struct RendererCapabilities; | 45 struct RendererCapabilities; |
| 46 struct UIResourceRequest; |
| 47 | 47 |
| 48 typedef std::list<UIResourceRequest> UIResourceRequestQueue; | 48 typedef std::list<UIResourceRequest> UIResourceRequestQueue; |
| 49 | 49 |
| 50 class CC_EXPORT LayerTreeImpl { | 50 class CC_EXPORT LayerTreeImpl { |
| 51 public: | 51 public: |
| 52 static scoped_ptr<LayerTreeImpl> create( | 52 static scoped_ptr<LayerTreeImpl> create( |
| 53 LayerTreeHostImpl* layer_tree_host_impl) { | 53 LayerTreeHostImpl* layer_tree_host_impl) { |
| 54 return make_scoped_ptr(new LayerTreeImpl(layer_tree_host_impl)); | 54 return make_scoped_ptr(new LayerTreeImpl(layer_tree_host_impl)); |
| 55 } | 55 } |
| 56 virtual ~LayerTreeImpl(); | 56 virtual ~LayerTreeImpl(); |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 | 257 |
| 258 UIResourceRequestQueue ui_resource_request_queue_; | 258 UIResourceRequestQueue ui_resource_request_queue_; |
| 259 | 259 |
| 260 private: | 260 private: |
| 261 DISALLOW_COPY_AND_ASSIGN(LayerTreeImpl); | 261 DISALLOW_COPY_AND_ASSIGN(LayerTreeImpl); |
| 262 }; | 262 }; |
| 263 | 263 |
| 264 } // namespace cc | 264 } // namespace cc |
| 265 | 265 |
| 266 #endif // CC_TREES_LAYER_TREE_IMPL_H_ | 266 #endif // CC_TREES_LAYER_TREE_IMPL_H_ |
| OLD | NEW |