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

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

Issue 23740010: Revert 223162 "Update the nine patch layer to use UI resources" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: 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 | Annotate | Revision Log
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;
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
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_
OLDNEW
« no previous file with comments | « trunk/src/cc/trees/layer_tree_host_impl_unittest.cc ('k') | trunk/src/cc/trees/layer_tree_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698