Chromium Code Reviews| Index: cc/layers/layer_lists.h |
| diff --git a/cc/layers/layer_lists.h b/cc/layers/layer_lists.h |
| index 01a7966888f2fbb3760194d2de7d86c3d5f87cc8..82fc555ed6d50dc5e27d004182d866a82e661611 100644 |
| --- a/cc/layers/layer_lists.h |
| +++ b/cc/layers/layer_lists.h |
| @@ -38,6 +38,8 @@ class CC_EXPORT RenderSurfaceLayerList { |
| LayerList::const_iterator begin() const; |
| LayerList::const_iterator end() const; |
| void clear(); |
| + LayerList* layer_list() { return &list_; } |
|
danakj
2014/04/25 22:59:24
Can we call this AsLayerList() and have it return
Ian Vollick
2014/04/25 23:14:39
Done.
|
| + const LayerList* layer_list() const { return &list_; } |
| private: |
| LayerList list_; |