X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fplatform%2Ftransforms%2FSkewTransformOperation.h;h=e31f24b65402ec7b3faef6f28736ad86705d204d;hb=1afa4dd80ef85af7c90efaea6959db1d92330844;hp=4b6ae507d25ac154cee5e8b1daba183b3056d570;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/platform/transforms/SkewTransformOperation.h b/src/third_party/WebKit/Source/platform/transforms/SkewTransformOperation.h index 4b6ae50..e31f24b 100644 --- a/src/third_party/WebKit/Source/platform/transforms/SkewTransformOperation.h +++ b/src/third_party/WebKit/Source/platform/transforms/SkewTransformOperation.h @@ -41,9 +41,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; @@ -51,12 +51,12 @@ private: return m_angleX == s->m_angleX && m_angleY == s->m_angleY; } - virtual void apply(TransformationMatrix& transform, const FloatSize&) const OVERRIDE + virtual void apply(TransformationMatrix& transform, const FloatSize&) const override { transform.skew(m_angleX, m_angleY); } - virtual PassRefPtr blend(const TransformOperation* from, double progress, bool blendToIdentity = false) OVERRIDE; + virtual PassRefPtr blend(const TransformOperation* from, double progress, bool blendToIdentity = false) override; SkewTransformOperation(double angleX, double angleY, OperationType type) : m_angleX(angleX)