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

Unified Diff: cc/timing_function.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/test/layer_tree_test_common.cc ('k') | cc/timing_function.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/timing_function.h
diff --git a/cc/timing_function.h b/cc/timing_function.h
index 4fd029dd22bd76c46d8745a4a2637c791abfd401..87f11f725fe98f1f0fa8a1a0f409b302c32c16d6 100644
--- a/cc/timing_function.h
+++ b/cc/timing_function.h
@@ -17,7 +17,7 @@ class CC_EXPORT TimingFunction : public FloatAnimationCurve {
virtual ~TimingFunction();
// Partial implementation of FloatAnimationCurve.
- virtual double duration() const OVERRIDE;
+ virtual double Duration() const OVERRIDE;
protected:
TimingFunction();
@@ -30,8 +30,8 @@ class CC_EXPORT CubicBezierTimingFunction : public TimingFunction {
virtual ~CubicBezierTimingFunction();
// Partial implementation of FloatAnimationCurve.
- virtual float getValue(double time) const OVERRIDE;
- virtual scoped_ptr<AnimationCurve> clone() const OVERRIDE;
+ virtual float GetValue(double time) const OVERRIDE;
+ virtual scoped_ptr<AnimationCurve> Clone() const OVERRIDE;
protected:
CubicBezierTimingFunction(double x1, double y1, double x2, double y2);
« no previous file with comments | « cc/test/layer_tree_test_common.cc ('k') | cc/timing_function.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698