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

Unified Diff: webkit/compositor_bindings/web_animation_impl.h

Issue 12481008: Remove cross-repo OVERRIDE annotations and IWYU-ify comp bindings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix forward decl in web_float_animation_curve_impl.h Created 7 years, 10 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 | « no previous file | webkit/compositor_bindings/web_content_layer_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « no previous file | webkit/compositor_bindings/web_content_layer_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698