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

Unified Diff: webkit/compositor_bindings/web_transform_operations_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_operations_impl.h
diff --git a/webkit/compositor_bindings/web_transform_operations_impl.h b/webkit/compositor_bindings/web_transform_operations_impl.h
index 195969bc9f932c9dd90fe20d5a129f2ef4113231..a92f20da586cb1db59c522308435d1f4824ad08d 100644
--- a/webkit/compositor_bindings/web_transform_operations_impl.h
+++ b/webkit/compositor_bindings/web_transform_operations_impl.h
@@ -10,6 +10,8 @@
#include "third_party/WebKit/Source/Platform/chromium/public/WebTransformOperations.h"
#include "webkit/compositor_bindings/webkit_compositor_bindings_export.h"
+namespace WebKit { class WebTransformationMatrix; }
+
namespace webkit {
class WebTransformOperationsImpl : public WebKit::WebTransformOperations {
@@ -20,17 +22,15 @@ class WebTransformOperationsImpl : public WebKit::WebTransformOperations {
const cc::TransformOperations& AsTransformOperations() const;
// Implementation of WebKit::WebTransformOperations methods
- virtual bool canBlendWith(const WebKit::WebTransformOperations& other) const
- OVERRIDE;
- virtual void appendTranslate(double x, double y, double z) OVERRIDE;
- virtual void appendRotate(double x, double y, double z, double degrees)
- OVERRIDE;
- virtual void appendScale(double x, double y, double z) OVERRIDE;
- virtual void appendSkew(double x, double y) OVERRIDE;
- virtual void appendPerspective(double depth) OVERRIDE;
- virtual void appendMatrix(const WebKit::WebTransformationMatrix&) OVERRIDE;
- virtual void appendIdentity() OVERRIDE;
- virtual bool isIdentity() const OVERRIDE;
+ virtual bool canBlendWith(const WebKit::WebTransformOperations& other) const;
+ virtual void appendTranslate(double x, double y, double z);
+ virtual void appendRotate(double x, double y, double z, double degrees);
+ virtual void appendScale(double x, double y, double z);
+ virtual void appendSkew(double x, double y);
+ virtual void appendPerspective(double depth);
+ virtual void appendMatrix(const WebKit::WebTransformationMatrix&);
+ virtual void appendIdentity();
+ virtual bool isIdentity() const;
private:
DISALLOW_COPY_AND_ASSIGN(WebTransformOperationsImpl);
« no previous file with comments | « webkit/compositor_bindings/web_transform_animation_curve_impl.h ('k') | webkit/compositor_bindings/web_video_layer_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698