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

Unified Diff: webkit/compositor_bindings/web_transform_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_transform_animation_curve_impl.h
diff --git a/webkit/compositor_bindings/web_transform_animation_curve_impl.h b/webkit/compositor_bindings/web_transform_animation_curve_impl.h
index 950e8663e30d7a8b44693bc4dfa9e86d9b6d5a0c..6c2aacc21806fba0fdf0c114190cb6d411d0fc49 100644
--- a/webkit/compositor_bindings/web_transform_animation_curve_impl.h
+++ b/webkit/compositor_bindings/web_transform_animation_curve_impl.h
@@ -16,24 +16,26 @@ class KeyframedTransformAnimationCurve;
namespace WebKit {
+class WebTransformKeyframe;
+
class WebTransformAnimationCurveImpl : public WebTransformAnimationCurve {
public:
WEBKIT_COMPOSITOR_BINDINGS_EXPORT WebTransformAnimationCurveImpl();
virtual ~WebTransformAnimationCurveImpl();
// WebAnimationCurve implementation.
- virtual AnimationCurveType type() const OVERRIDE;
+ virtual AnimationCurveType type() const;
// WebTransformAnimationCurve implementation.
- virtual void add(const WebTransformKeyframe&) OVERRIDE;
- virtual void add(const WebTransformKeyframe&, TimingFunctionType) OVERRIDE;
+ virtual void add(const WebTransformKeyframe&);
+ virtual void add(const WebTransformKeyframe&, TimingFunctionType);
virtual void add(const WebTransformKeyframe&,
double x1,
double y1,
double x2,
- double y2) OVERRIDE;
+ double y2);
- virtual WebTransformationMatrix getValue(double time) const OVERRIDE;
+ virtual WebTransformationMatrix getValue(double time) const;
scoped_ptr<cc::AnimationCurve> cloneToAnimationCurve() const;

Powered by Google App Engine
This is Rietveld 408576698