summaryrefslogtreecommitdiffstats
path: root/cc/blink/web_transform_operations_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc/blink/web_transform_operations_impl.h')
-rw-r--r--cc/blink/web_transform_operations_impl.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/cc/blink/web_transform_operations_impl.h b/cc/blink/web_transform_operations_impl.h
index 0c91e06..f8fe22b 100644
--- a/cc/blink/web_transform_operations_impl.h
+++ b/cc/blink/web_transform_operations_impl.h
@@ -15,20 +15,20 @@ namespace cc_blink {
class WebTransformOperationsImpl : public blink::WebTransformOperations {
public:
CC_BLINK_EXPORT WebTransformOperationsImpl();
- virtual ~WebTransformOperationsImpl();
+ ~WebTransformOperationsImpl() override;
const cc::TransformOperations& AsTransformOperations() const;
// Implementation of blink::WebTransformOperations methods
- virtual bool canBlendWith(const blink::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 SkMatrix44&);
- virtual void appendIdentity();
- virtual bool isIdentity() const;
+ bool canBlendWith(const blink::WebTransformOperations& other) const override;
+ void appendTranslate(double x, double y, double z) override;
+ void appendRotate(double x, double y, double z, double degrees) override;
+ void appendScale(double x, double y, double z) override;
+ void appendSkew(double x, double y) override;
+ void appendPerspective(double depth) override;
+ void appendMatrix(const SkMatrix44&) override;
+ void appendIdentity() override;
+ bool isIdentity() const override;
private:
cc::TransformOperations transform_operations_;