Index: ui/compositor/layer_animation_element.h |
diff --git a/ui/compositor/layer_animation_element.h b/ui/compositor/layer_animation_element.h |
index 870f0054840e4cc2d24c8a98dc9d324ebde9f294..46aedb7750454b166cf8691858c6a19503873569 100644 |
--- a/ui/compositor/layer_animation_element.h |
+++ b/ui/compositor/layer_animation_element.h |
@@ -18,7 +18,6 @@ namespace ui { |
class InterpolatedTransform; |
class LayerAnimationDelegate; |
-class Transform; |
// LayerAnimationElements represent one segment of an animation between two |
// keyframes. They know how to update a LayerAnimationDelegate given a value |
@@ -41,7 +40,7 @@ class COMPOSITOR_EXPORT LayerAnimationElement { |
explicit TargetValue(const LayerAnimationDelegate* delegate); |
gfx::Rect bounds; |
- Transform transform; |
+ gfx::Transform transform; |
float opacity; |
bool visibility; |
float brightness; |
@@ -58,7 +57,7 @@ class COMPOSITOR_EXPORT LayerAnimationElement { |
// Creates an element that transitions to the given transform. The caller owns |
// the return value. |
static LayerAnimationElement* CreateTransformElement( |
- const Transform& transform, |
+ const gfx::Transform& transform, |
base::TimeDelta duration); |
// Creates an element that transitions to another in a way determined by an |