| Index: Source/platform/transforms/ScaleTransformOperation.h
|
| diff --git a/Source/platform/transforms/ScaleTransformOperation.h b/Source/platform/transforms/ScaleTransformOperation.h
|
| index 608e22350216045c17a1fe8628597075eb82142d..8b6fde1e2cfb50e73f884730a5116389687e5d26 100644
|
| --- a/Source/platform/transforms/ScaleTransformOperation.h
|
| +++ b/Source/platform/transforms/ScaleTransformOperation.h
|
| @@ -48,9 +48,9 @@ public:
|
| virtual bool canBlendWith(const TransformOperation& other) const;
|
|
|
| private:
|
| - virtual OperationType type() const OVERRIDE { return m_type; }
|
| + virtual OperationType type() const override { return m_type; }
|
|
|
| - virtual bool operator==(const TransformOperation& o) const OVERRIDE
|
| + virtual bool operator==(const TransformOperation& o) const override
|
| {
|
| if (!isSameType(o))
|
| return false;
|
| @@ -58,12 +58,12 @@ private:
|
| return m_x == s->m_x && m_y == s->m_y && m_z == s->m_z;
|
| }
|
|
|
| - virtual void apply(TransformationMatrix& transform, const FloatSize&) const OVERRIDE
|
| + virtual void apply(TransformationMatrix& transform, const FloatSize&) const override
|
| {
|
| transform.scale3d(m_x, m_y, m_z);
|
| }
|
|
|
| - 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;
|
|
|
| ScaleTransformOperation(double sx, double sy, double sz, OperationType type)
|
| : m_x(sx)
|
|
|