Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3652)

Unified Diff: cc/animation_curve.cc

Issue 11189043: cc: Rename cc classes and members to match filenames (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}
« cc/active_animation.h ('K') | « cc/animation_curve.h ('k') | cc/animation_events.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698