Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / rendering / shapes / BoxShape.h
index 06a5148..7871fc8 100644 (file)
@@ -33,9 +33,9 @@
 #include "core/rendering/shapes/Shape.h"
 #include "platform/geometry/FloatRoundedRect.h"
 
-namespace WebCore {
+namespace blink {
 
-class BoxShape FINAL : public Shape {
+class BoxShape final : public Shape {
 public:
     BoxShape(const FloatRoundedRect& bounds)
         : Shape()
@@ -43,10 +43,10 @@ public:
     {
     }
 
-    virtual LayoutRect shapeMarginLogicalBoundingBox() const OVERRIDE;
-    virtual bool isEmpty() const OVERRIDE { return m_bounds.isEmpty(); }
-    virtual void getExcludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList&) const OVERRIDE;
-    virtual void buildDisplayPaths(DisplayPaths&) const OVERRIDE;
+    virtual LayoutRect shapeMarginLogicalBoundingBox() const override;
+    virtual bool isEmpty() const override { return m_bounds.isEmpty(); }
+    virtual LineSegment getExcludedInterval(LayoutUnit logicalTop, LayoutUnit logicalHeight) const override;
+    virtual void buildDisplayPaths(DisplayPaths&) const override;
 
 private:
     FloatRoundedRect shapeMarginBounds() const;
@@ -54,7 +54,7 @@ private:
     FloatRoundedRect m_bounds;
 };
 
-} // namespace WebCore
+} // namespace blink
 
 #endif // BoxShape_h