| Index: cc/layer_impl.h
|
| diff --git a/cc/layer_impl.h b/cc/layer_impl.h
|
| index b2d6d99343a763c867b7b180920d59dd116ada4a..bfd805330c173eb637db9c6149ee905a72d6cae5 100644
|
| --- a/cc/layer_impl.h
|
| +++ b/cc/layer_impl.h
|
| @@ -150,6 +150,7 @@ class CC_EXPORT LayerImpl : LayerAnimationValueObserver {
|
| void SetOpacity(float opacity);
|
| float opacity() const { return opacity_; }
|
| bool OpacityIsAnimating() const;
|
| + bool OpacityIsAnimatingOnImplOnly() const;
|
|
|
| void SetPosition(gfx::PointF position);
|
| gfx::PointF position() const { return position_; }
|
| @@ -327,6 +328,7 @@ class CC_EXPORT LayerImpl : LayerAnimationValueObserver {
|
| void SetTransform(const gfx::Transform& transform);
|
| const gfx::Transform& transform() const { return transform_; }
|
| bool TransformIsAnimating() const;
|
| + bool TransformIsAnimatingOnImplOnly() const;
|
|
|
| void set_update_rect(const gfx::RectF& update_rect) {
|
| update_rect_ = update_rect;
|
|
|