| Index: cc/animation_curve.cc
|
| diff --git a/cc/animation_curve.cc b/cc/animation_curve.cc
|
| index 7cd01587d4b29a7b57c93a3ebdf287f936936008..7c499697900140f3b6cbf453670f5bf0b2235e3a 100644
|
| --- a/cc/animation_curve.cc
|
| +++ b/cc/animation_curve.cc
|
| @@ -8,24 +8,24 @@
|
|
|
| namespace cc {
|
|
|
| -const CCFloatAnimationCurve* CCAnimationCurve::toFloatAnimationCurve() const
|
| +const FloatAnimationCurve* AnimationCurve::toFloatAnimationCurve() const
|
| {
|
| - ASSERT(type() == CCAnimationCurve::Float);
|
| - return static_cast<const CCFloatAnimationCurve*>(this);
|
| + ASSERT(type() == AnimationCurve::Float);
|
| + return static_cast<const FloatAnimationCurve*>(this);
|
| }
|
|
|
| -CCAnimationCurve::Type CCFloatAnimationCurve::type() const
|
| +AnimationCurve::Type FloatAnimationCurve::type() const
|
| {
|
| return Float;
|
| }
|
|
|
| -const CCTransformAnimationCurve* CCAnimationCurve::toTransformAnimationCurve() const
|
| +const TransformAnimationCurve* AnimationCurve::toTransformAnimationCurve() const
|
| {
|
| - ASSERT(type() == CCAnimationCurve::Transform);
|
| - return static_cast<const CCTransformAnimationCurve*>(this);
|
| + ASSERT(type() == AnimationCurve::Transform);
|
| + return static_cast<const TransformAnimationCurve*>(this);
|
| }
|
|
|
| -CCAnimationCurve::Type CCTransformAnimationCurve::type() const
|
| +AnimationCurve::Type TransformAnimationCurve::type() const
|
| {
|
| return Transform;
|
| }
|
|
|