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_; |