| Index: cc/test/animation_test_common.h
|
| diff --git a/cc/test/animation_test_common.h b/cc/test/animation_test_common.h
|
| index 95e427993db467fa30903b516f0f9280ebc77932..1afbc06ae1f43686a5c378980240302c793945f7 100644
|
| --- a/cc/test/animation_test_common.h
|
| +++ b/cc/test/animation_test_common.h
|
| @@ -23,9 +23,9 @@ public:
|
| explicit FakeFloatAnimationCurve(double duration);
|
| virtual ~FakeFloatAnimationCurve();
|
|
|
| - virtual double duration() const OVERRIDE;
|
| - virtual float getValue(double now) const OVERRIDE;
|
| - virtual scoped_ptr<cc::AnimationCurve> clone() const OVERRIDE;
|
| + virtual double Duration() const OVERRIDE;
|
| + virtual float GetValue(double now) const OVERRIDE;
|
| + virtual scoped_ptr<cc::AnimationCurve> Clone() const OVERRIDE;
|
|
|
| private:
|
| double m_duration;
|
| @@ -36,10 +36,10 @@ public:
|
| FakeTransformTransition(double duration);
|
| virtual ~FakeTransformTransition();
|
|
|
| - virtual double duration() const OVERRIDE;
|
| - virtual gfx::Transform getValue(double time) const OVERRIDE;
|
| + virtual double Duration() const OVERRIDE;
|
| + virtual gfx::Transform GetValue(double time) const OVERRIDE;
|
|
|
| - virtual scoped_ptr<cc::AnimationCurve> clone() const OVERRIDE;
|
| + virtual scoped_ptr<cc::AnimationCurve> Clone() const OVERRIDE;
|
|
|
| private:
|
| double m_duration;
|
| @@ -50,10 +50,10 @@ public:
|
| FakeFloatTransition(double duration, float from, float to);
|
| virtual ~FakeFloatTransition();
|
|
|
| - virtual double duration() const OVERRIDE;
|
| - virtual float getValue(double time) const OVERRIDE;
|
| + virtual double Duration() const OVERRIDE;
|
| + virtual float GetValue(double time) const OVERRIDE;
|
|
|
| - virtual scoped_ptr<cc::AnimationCurve> clone() const OVERRIDE;
|
| + virtual scoped_ptr<cc::AnimationCurve> Clone() const OVERRIDE;
|
|
|
| private:
|
| double m_duration;
|
|
|