diff options
author | enne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-19 20:58:10 +0000 |
---|---|---|
committer | enne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-19 20:58:10 +0000 |
commit | 184fac5add06d5f4670fa6be4a4d3b39232d51bb (patch) | |
tree | 7efc1d20146fcafdbe408fa67292117c41e9393f /cc/animation_curve.cc | |
parent | fb7ffba75e81a79436434bab0715be0d6e67bc07 (diff) | |
download | chromium_src-184fac5add06d5f4670fa6be4a4d3b39232d51bb.zip chromium_src-184fac5add06d5f4670fa6be4a4d3b39232d51bb.tar.gz chromium_src-184fac5add06d5f4670fa6be4a4d3b39232d51bb.tar.bz2 |
cc: Rename cc classes and members to match filenames
BUG=155413
Review URL: https://codereview.chromium.org/11189043
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163052 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/animation_curve.cc')
-rw-r--r-- | cc/animation_curve.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/cc/animation_curve.cc b/cc/animation_curve.cc index c2c3dc0..eaeaa85 100644 --- a/cc/animation_curve.cc +++ b/cc/animation_curve.cc @@ -10,24 +10,24 @@ namespace cc { -const CCFloatAnimationCurve* CCAnimationCurve::toFloatAnimationCurve() const +const FloatAnimationCurve* AnimationCurve::toFloatAnimationCurve() const { - DCHECK(type() == CCAnimationCurve::Float); - return static_cast<const CCFloatAnimationCurve*>(this); + DCHECK(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 { - DCHECK(type() == CCAnimationCurve::Transform); - return static_cast<const CCTransformAnimationCurve*>(this); + DCHECK(type() == AnimationCurve::Transform); + return static_cast<const TransformAnimationCurve*>(this); } -CCAnimationCurve::Type CCTransformAnimationCurve::type() const +AnimationCurve::Type TransformAnimationCurve::type() const { return Transform; } |