Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(258)

Side by Side Diff: cc/trees/layer_tree_impl.h

Issue 22870016: Update the nine patch layer to use UI resources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/trees/layer_tree_host_impl_unittest.cc ('k') | cc/trees/layer_tree_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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;
45 struct RendererCapabilities; 46 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 265
266 UIResourceRequestQueue ui_resource_request_queue_; 266 UIResourceRequestQueue ui_resource_request_queue_;
267 267
268 private: 268 private:
269 DISALLOW_COPY_AND_ASSIGN(LayerTreeImpl); 269 DISALLOW_COPY_AND_ASSIGN(LayerTreeImpl);
270 }; 270 };
271 271
272 } // namespace cc 272 } // namespace cc
273 273
274 #endif // CC_TREES_LAYER_TREE_IMPL_H_ 274 #endif // CC_TREES_LAYER_TREE_IMPL_H_
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_host_impl_unittest.cc ('k') | cc/trees/layer_tree_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698