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

Unified Diff: webkit/compositor_bindings/web_float_animation_curve_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
Index: webkit/compositor_bindings/web_float_animation_curve_impl.h
diff --git a/webkit/compositor_bindings/web_float_animation_curve_impl.h b/webkit/compositor_bindings/web_float_animation_curve_impl.h
index 24f452f830327b2ebfe1ef512dec37a27d42ff41..d20f24325c3b606e099134e36bc0a079b1c9f631 100644
--- a/webkit/compositor_bindings/web_float_animation_curve_impl.h
+++ b/webkit/compositor_bindings/web_float_animation_curve_impl.h
@@ -15,6 +15,7 @@ class KeyframedFloatAnimationCurve;
}
namespace WebKit {
+struct WebFloatKeyframe;
class WebFloatAnimationCurveImpl : public WebFloatAnimationCurve {
public:
@@ -22,18 +23,18 @@ class WebFloatAnimationCurveImpl : public WebFloatAnimationCurve {
virtual ~WebFloatAnimationCurveImpl();
// WebAnimationCurve implementation.
- virtual AnimationCurveType type() const OVERRIDE;
+ virtual AnimationCurveType type() const;
// WebFloatAnimationCurve implementation.
- virtual void add(const WebFloatKeyframe&) OVERRIDE;
- virtual void add(const WebFloatKeyframe&, TimingFunctionType) OVERRIDE;
+ virtual void add(const WebFloatKeyframe&);
+ virtual void add(const WebFloatKeyframe&, TimingFunctionType);
virtual void add(const WebFloatKeyframe&,
double x1,
double y1,
double x2,
- double y2) OVERRIDE;
+ double y2);
- virtual float getValue(double time) const OVERRIDE;
+ virtual float getValue(double time) const;
scoped_ptr<cc::AnimationCurve> cloneToAnimationCurve() const;
« no previous file with comments | « webkit/compositor_bindings/web_external_texture_layer_impl.h ('k') | webkit/compositor_bindings/web_image_layer_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698