Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / transforms / SkewTransformOperation.h
index f87da94..e31f24b 100644 (file)
@@ -27,7 +27,7 @@
 
 #include "platform/transforms/TransformOperation.h"
 
-namespace WebCore {
+namespace blink {
 
 class PLATFORM_EXPORT SkewTransformOperation : public TransformOperation {
 public:
@@ -41,10 +41,9 @@ public:
 
     virtual bool canBlendWith(const TransformOperation& other) const;
 private:
-    virtual bool isIdentity() const OVERRIDE { return !m_angleX && !m_angleY; }
-    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;
@@ -52,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<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false) OVERRIDE;
+    virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false) override;
 
     SkewTransformOperation(double angleX, double angleY, OperationType type)
         : m_angleX(angleX)
@@ -71,6 +70,6 @@ private:
     OperationType m_type;
 };
 
-} // namespace WebCore
+} // namespace blink
 
 #endif // SkewTransformOperation_h