| Index: cc/layers/render_surface.h
|
| diff --git a/cc/layers/render_surface.h b/cc/layers/render_surface.h
|
| index b0da4e99f4cb0fb68c6047f24582c65d1f92afe7..ace787a8d92e8d30b0b0eeb644634e03aa6a7704 100644
|
| --- a/cc/layers/render_surface.h
|
| +++ b/cc/layers/render_surface.h
|
| @@ -19,6 +19,8 @@
|
| namespace cc {
|
|
|
| class Layer;
|
| +template <typename LayerType>
|
| +class LayerIterator;
|
|
|
| class CC_EXPORT RenderSurface {
|
| public:
|
| @@ -112,7 +114,7 @@ class CC_EXPORT RenderSurface {
|
| }
|
|
|
| private:
|
| - friend struct LayerIteratorActions;
|
| + friend class LayerIterator<Layer>;
|
|
|
| Layer* owning_layer_;
|
|
|
|
|