| Index: cc/layers/layer.h
|
| diff --git a/cc/layers/layer.h b/cc/layers/layer.h
|
| index dfbbdf7b6f732d3591cc6852cd262b9e2ced25d7..3ac6cd4004867d25d3558c2f8d81619d0ff6aeba 100644
|
| --- a/cc/layers/layer.h
|
| +++ b/cc/layers/layer.h
|
| @@ -503,14 +503,6 @@ class CC_EXPORT Layer : public base::RefCounted<Layer>,
|
|
|
| bool IsPropertyChangeAllowed() const;
|
|
|
| - // If this layer has a scroll parent, it removes |this| from its list of
|
| - // scroll children.
|
| - void RemoveFromScrollTree();
|
| -
|
| - // If this layer has a clip parent, it removes |this| from its list of clip
|
| - // children.
|
| - void RemoveFromClipTree();
|
| -
|
| void reset_raster_scale_to_unknown() { raster_scale_ = 0.f; }
|
|
|
| // This flag is set when the layer needs to push properties to the impl
|
| @@ -570,6 +562,14 @@ class CC_EXPORT Layer : public base::RefCounted<Layer>,
|
| virtual void OnAnimationWaitingForDeletion() OVERRIDE;
|
| virtual bool IsActive() const OVERRIDE;
|
|
|
| + // If this layer has a scroll parent, it removes |this| from its list of
|
| + // scroll children.
|
| + void RemoveFromScrollTree();
|
| +
|
| + // If this layer has a clip parent, it removes |this| from its list of clip
|
| + // children.
|
| + void RemoveFromClipTree();
|
| +
|
| LayerList children_;
|
| Layer* parent_;
|
|
|
|
|