| Index: cc/layers/layer.h
|
| diff --git a/cc/layers/layer.h b/cc/layers/layer.h
|
| index 4eb5e8173a6580bb152dec52c87a7ca359e12ab9..6e25761a70054ef42d8e0fb70d72b0287c85c4f4 100644
|
| --- a/cc/layers/layer.h
|
| +++ b/cc/layers/layer.h
|
| @@ -55,7 +55,6 @@ class Animation;
|
| class AnimationDelegate;
|
| struct AnimationEvent;
|
| class CopyOutputRequest;
|
| -class LayerAnimationDelegate;
|
| class LayerAnimationEventObserver;
|
| class LayerClient;
|
| class LayerImpl;
|
| @@ -547,6 +546,9 @@ class CC_EXPORT Layer : public base::RefCounted<Layer>,
|
| // knows immediately that a commit is required. This implies SetNeedsUpdate
|
| // as well as SetNeedsPushProperties to push that property.
|
| void SetNeedsCommit();
|
| + // This is identical to SetNeedsCommit, but the former requests a rebuild of
|
| + // the property trees.
|
| + void SetNeedsCommitNoRebuild();
|
| // Called when there's been a change in layer structure. Implies both
|
| // SetNeedsUpdate and SetNeedsCommit, but not SetNeedsPushProperties.
|
| void SetNeedsFullTreeSync();
|
|
|