Index: Source/platform/transforms/Matrix3DTransformOperation.h |
diff --git a/Source/platform/transforms/Matrix3DTransformOperation.h b/Source/platform/transforms/Matrix3DTransformOperation.h |
index d95afda8398eacb2e1cbf673133c6f294980bf76..5c4d9db4c4dd6a1eefc7529c25520be5a7945b0f 100644 |
--- a/Source/platform/transforms/Matrix3DTransformOperation.h |
+++ b/Source/platform/transforms/Matrix3DTransformOperation.h |
@@ -45,9 +45,9 @@ public: |
} |
private: |
- virtual OperationType type() const OVERRIDE { return Matrix3D; } |
+ virtual OperationType type() const override { return Matrix3D; } |
- virtual bool operator==(const TransformOperation& o) const OVERRIDE |
+ virtual bool operator==(const TransformOperation& o) const override |
{ |
if (!isSameType(o)) |
return false; |
@@ -55,12 +55,12 @@ private: |
return m_matrix == m->m_matrix; |
} |
- virtual void apply(TransformationMatrix& transform, const FloatSize&) const OVERRIDE |
+ virtual void apply(TransformationMatrix& transform, const FloatSize&) const override |
{ |
transform.multiply(TransformationMatrix(m_matrix)); |
} |
- virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false) OVERRIDE; |
+ virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false) override; |
Matrix3DTransformOperation(const TransformationMatrix& mat) |
{ |