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

Unified Diff: cc/test/animation_test_common.h

Issue 12517003: cc: Chromify the Animation and LayerAnimationController classes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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
« no previous file with comments | « cc/layer_unittest.cc ('k') | cc/test/animation_test_common.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « cc/layer_unittest.cc ('k') | cc/test/animation_test_common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698