Index: cc/trees/layer_tree_impl.cc |
diff --git a/cc/trees/layer_tree_impl.cc b/cc/trees/layer_tree_impl.cc |
index d76d8df6f358f0ad5c798a19770f6e49b17abef3..8fe1f88160a82f57ccf9e624ffaad6bbb9897662 100644 |
--- a/cc/trees/layer_tree_impl.cc |
+++ b/cc/trees/layer_tree_impl.cc |
@@ -479,10 +479,7 @@ void LayerTreeImpl::UpdateDrawProperties() { |
// LayerIterator is used here instead of CallFunctionForSubtree to only |
// UpdateTilePriorities on layers that will be visible (and thus have valid |
// draw properties) and not because any ordering is required. |
- typedef LayerIterator<LayerImpl, |
- LayerImplList, |
- RenderSurfaceImpl, |
- LayerIteratorActions::FrontToBack> LayerIteratorType; |
+ typedef LayerIterator<LayerImpl> LayerIteratorType; |
LayerIteratorType end = LayerIteratorType::End(&render_surface_layer_list_); |
for (LayerIteratorType it = |
LayerIteratorType::Begin(&render_surface_layer_list_); |
@@ -736,10 +733,7 @@ scoped_ptr<base::Value> LayerTreeImpl::AsValue() const { |
state->Set("root_layer", root_layer_->AsValue().release()); |
scoped_ptr<base::ListValue> render_surface_layer_list(new base::ListValue()); |
- typedef LayerIterator<LayerImpl, |
- LayerImplList, |
- RenderSurfaceImpl, |
- LayerIteratorActions::FrontToBack> LayerIteratorType; |
+ typedef LayerIterator<LayerImpl> LayerIteratorType; |
LayerIteratorType end = LayerIteratorType::End(&render_surface_layer_list_); |
for (LayerIteratorType it = LayerIteratorType::Begin( |
&render_surface_layer_list_); it != end; ++it) { |