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/timing_function.h | |
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/timing_function.h')
-rw-r--r-- | cc/timing_function.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/cc/timing_function.h b/cc/timing_function.h index 993ab87..3d99539 100644 --- a/cc/timing_function.h +++ b/cc/timing_function.h @@ -11,50 +11,50 @@ namespace cc { // See http://www.w3.org/TR/css3-transitions/. -class CCTimingFunction : public CCFloatAnimationCurve { +class TimingFunction : public FloatAnimationCurve { public: - virtual ~CCTimingFunction(); + virtual ~TimingFunction(); - // Partial implementation of CCFloatAnimationCurve. + // Partial implementation of FloatAnimationCurve. virtual double duration() const OVERRIDE; protected: - CCTimingFunction(); + TimingFunction(); }; -class CCCubicBezierTimingFunction : public CCTimingFunction { +class CubicBezierTimingFunction : public TimingFunction { public: - static scoped_ptr<CCCubicBezierTimingFunction> create(double x1, double y1, double x2, double y2); - virtual ~CCCubicBezierTimingFunction(); + static scoped_ptr<CubicBezierTimingFunction> create(double x1, double y1, double x2, double y2); + virtual ~CubicBezierTimingFunction(); - // Partial implementation of CCFloatAnimationCurve. + // Partial implementation of FloatAnimationCurve. virtual float getValue(double time) const OVERRIDE; - virtual scoped_ptr<CCAnimationCurve> clone() const OVERRIDE; + virtual scoped_ptr<AnimationCurve> clone() const OVERRIDE; protected: - CCCubicBezierTimingFunction(double x1, double y1, double x2, double y2); + CubicBezierTimingFunction(double x1, double y1, double x2, double y2); UnitBezier m_curve; }; -class CCEaseTimingFunction { +class EaseTimingFunction { public: - static scoped_ptr<CCTimingFunction> create(); + static scoped_ptr<TimingFunction> create(); }; -class CCEaseInTimingFunction { +class EaseInTimingFunction { public: - static scoped_ptr<CCTimingFunction> create(); + static scoped_ptr<TimingFunction> create(); }; -class CCEaseOutTimingFunction { +class EaseOutTimingFunction { public: - static scoped_ptr<CCTimingFunction> create(); + static scoped_ptr<TimingFunction> create(); }; -class CCEaseInOutTimingFunction { +class EaseInOutTimingFunction { public: - static scoped_ptr<CCTimingFunction> create(); + static scoped_ptr<TimingFunction> create(); }; } // namespace cc |