| 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);
|
|
|