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

Unified Diff: cc/trees/layer_tree_impl.h

Issue 13285002: cc: Consolidate LayerList types. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/trees/layer_tree_host_unittest_video.cc ('k') | cc/trees/layer_tree_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/layer_tree_impl.h
diff --git a/cc/trees/layer_tree_impl.h b/cc/trees/layer_tree_impl.h
index 1aaf3bac4b0405f6691a67cf7908b88d563a974f..04680c1b892b008256510c41a8ad9485908c024e 100644
--- a/cc/trees/layer_tree_impl.h
+++ b/cc/trees/layer_tree_impl.h
@@ -43,8 +43,6 @@ struct RendererCapabilities;
class CC_EXPORT LayerTreeImpl {
public:
- typedef std::vector<LayerImpl*> LayerList;
-
static scoped_ptr<LayerTreeImpl> create(
LayerTreeHostImpl* layer_tree_host_impl) {
return make_scoped_ptr(new LayerTreeImpl(layer_tree_host_impl));
@@ -161,7 +159,7 @@ class CC_EXPORT LayerTreeImpl {
bool AreVisibleResourcesReady() const;
- const LayerList& RenderSurfaceLayerList() const;
+ const LayerImplList& RenderSurfaceLayerList() const;
// These return the size of the root scrollable area and the size of
// the user-visible scrolling viewport, in CSS layout coordinates.
@@ -239,7 +237,7 @@ class CC_EXPORT LayerTreeImpl {
// List of visible layers for the most recently prepared frame. Used for
// rendering and input event hit testing.
- LayerList render_surface_layer_list_;
+ LayerImplList render_surface_layer_list_;
bool contents_textures_purged_;
bool viewport_size_invalid_;
« no previous file with comments | « cc/trees/layer_tree_host_unittest_video.cc ('k') | cc/trees/layer_tree_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698