| Index: ui/compositor/layer_animator.h
|
| diff --git a/ui/compositor/layer_animator.h b/ui/compositor/layer_animator.h
|
| index 783d6cb6d3c8fe0c8ab5655bcb7627b47aa7ea31..d96badd1df1026f122d8d69a218d5dcdf5210e81 100644
|
| --- a/ui/compositor/layer_animator.h
|
| +++ b/ui/compositor/layer_animator.h
|
| @@ -20,6 +20,7 @@
|
|
|
| namespace gfx {
|
| class Rect;
|
| +class Transform;
|
| }
|
|
|
| namespace ui {
|
| @@ -29,7 +30,6 @@ class LayerAnimationSequence;
|
| class LayerAnimationDelegate;
|
| class LayerAnimationObserver;
|
| class ScopedLayerAnimationSettings;
|
| -class Transform;
|
|
|
| // When a property of layer needs to be changed it is set by way of
|
| // LayerAnimator. This enables LayerAnimator to animate property changes.
|
| @@ -60,8 +60,8 @@ class COMPOSITOR_EXPORT LayerAnimator
|
| static LayerAnimator* CreateImplicitAnimator();
|
|
|
| // Sets the transform on the delegate. May cause an implicit animation.
|
| - virtual void SetTransform(const Transform& transform);
|
| - Transform GetTargetTransform() const;
|
| + virtual void SetTransform(const gfx::Transform& transform);
|
| + gfx::Transform GetTargetTransform() const;
|
|
|
| // Sets the bounds on the delegate. May cause an implicit animation.
|
| virtual void SetBounds(const gfx::Rect& bounds);
|
|
|