| Index: cc/keyframed_animation_curve.cc
|
| diff --git a/cc/keyframed_animation_curve.cc b/cc/keyframed_animation_curve.cc
|
| index 579d78715a9c373c50f0d2eeea00a94b39bea7b3..e913c9aa340b302ee9acc94018142f8716a24759 100644
|
| --- a/cc/keyframed_animation_curve.cc
|
| +++ b/cc/keyframed_animation_curve.cc
|
| @@ -4,8 +4,6 @@
|
|
|
| #include "cc/keyframed_animation_curve.h"
|
|
|
| -using WebKit::WebTransformationMatrix;
|
| -
|
| namespace cc {
|
|
|
| namespace {
|
| @@ -196,7 +194,7 @@ scoped_ptr<AnimationCurve> KeyframedTransformAnimationCurve::clone() const
|
| return toReturn.PassAs<AnimationCurve>();
|
| }
|
|
|
| -WebTransformationMatrix KeyframedTransformAnimationCurve::getValue(double t) const
|
| +gfx::Transform KeyframedTransformAnimationCurve::getValue(double t) const
|
| {
|
| if (t <= m_keyframes.front()->time())
|
| return m_keyframes.front()->value().Apply();
|
|
|