| Index: webkit/compositor_bindings/web_animation_impl.h
|
| diff --git a/webkit/compositor_bindings/web_animation_impl.h b/webkit/compositor_bindings/web_animation_impl.h
|
| index 0edc817dcfacad243b470502b7409fb88f9c27cd..b70a3c618ca578469ab8d0b7454624012d059ee5 100644
|
| --- a/webkit/compositor_bindings/web_animation_impl.h
|
| +++ b/webkit/compositor_bindings/web_animation_impl.h
|
| @@ -12,6 +12,7 @@
|
| namespace cc { class Animation; }
|
|
|
| namespace WebKit {
|
| +class WebAnimationCurve;
|
|
|
| class WebAnimationImpl : public WebAnimation {
|
| public:
|
| @@ -22,16 +23,16 @@ class WebAnimationImpl : public WebAnimation {
|
| virtual ~WebAnimationImpl();
|
|
|
| // WebAnimation implementation
|
| - virtual int id() OVERRIDE;
|
| - virtual TargetProperty targetProperty() const OVERRIDE;
|
| - virtual int iterations() const OVERRIDE;
|
| - virtual void setIterations(int) OVERRIDE;
|
| - virtual double startTime() const OVERRIDE;
|
| - virtual void setStartTime(double monotonic_time) OVERRIDE;
|
| - virtual double timeOffset() const OVERRIDE;
|
| - virtual void setTimeOffset(double monotonic_time) OVERRIDE;
|
| - virtual bool alternatesDirection() const OVERRIDE;
|
| - virtual void setAlternatesDirection(bool) OVERRIDE;
|
| + virtual int id();
|
| + virtual TargetProperty targetProperty() const;
|
| + virtual int iterations() const;
|
| + virtual void setIterations(int);
|
| + virtual double startTime() const;
|
| + virtual void setStartTime(double monotonic_time);
|
| + virtual double timeOffset() const;
|
| + virtual void setTimeOffset(double monotonic_time);
|
| + virtual bool alternatesDirection() const;
|
| + virtual void setAlternatesDirection(bool);
|
|
|
| scoped_ptr<cc::Animation> cloneToAnimation();
|
|
|
|
|