| 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);
|
|
|