Index: cc/layers/layer_impl.h |
diff --git a/cc/layers/layer_impl.h b/cc/layers/layer_impl.h |
index f3eb4cea90fca7de26b3025c93c5c09f2176ba04..8db32f8f3d053ecf0e1977f3cb8095a07c4f5fb1 100644 |
--- a/cc/layers/layer_impl.h |
+++ b/cc/layers/layer_impl.h |
@@ -801,6 +801,10 @@ class CC_EXPORT LayerImpl : public LayerAnimationValueObserver, |
DrawMode current_draw_mode_; |
+ // Group of properties that need to be computed based on the layer tree |
+ // hierarchy before layers can be drawn. |
+ DrawProperties<LayerImpl> draw_properties_; |
enne (OOO)
2015/04/29 18:01:24
Could you just call draw_properties() that returns
|
+ |
private: |
// Rect indicating what was repainted/updated during update. |
// Note that plugin layers bypass this and leave it empty. |
@@ -820,10 +824,6 @@ class CC_EXPORT LayerImpl : public LayerAnimationValueObserver, |
ScopedPtrVector<CopyOutputRequest> copy_requests_; |
- // Group of properties that need to be computed based on the layer tree |
- // hierarchy before layers can be drawn. |
- DrawProperties<LayerImpl> draw_properties_; |
- |
scoped_refptr<base::trace_event::ConvertableToTraceFormat> debug_info_; |
scoped_ptr<RenderSurfaceImpl> render_surface_; |