| Index: cc/CCAnimationCurve.h
|
| diff --git a/cc/CCAnimationCurve.h b/cc/CCAnimationCurve.h
|
| index 46808f657494f01bba7cdd9f0be6c6064b6dfd1a..c177d233b1b4f1ee77f26eb4a12ad6ee54dd2be6 100644
|
| --- a/cc/CCAnimationCurve.h
|
| +++ b/cc/CCAnimationCurve.h
|
| @@ -38,7 +38,7 @@ public:
|
| virtual float getValue(double t) const = 0;
|
|
|
| // Partial CCAnimation implementation.
|
| - virtual Type type() const OVERRIDE { return Float; }
|
| + virtual Type type() const OVERRIDE;
|
| };
|
|
|
| class CCTransformAnimationCurve : public CCAnimationCurve {
|
| @@ -48,7 +48,7 @@ public:
|
| virtual WebKit::WebTransformationMatrix getValue(double t) const = 0;
|
|
|
| // Partial CCAnimation implementation.
|
| - virtual Type type() const OVERRIDE { return Transform; }
|
| + virtual Type type() const OVERRIDE;
|
| };
|
|
|
| } // namespace cc
|
|
|