Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / rendering / shapes / BoxShape.h
index 06a5148..7b6cf15 100644 (file)
@@ -33,7 +33,7 @@
 #include "core/rendering/shapes/Shape.h"
 #include "platform/geometry/FloatRoundedRect.h"
 
-namespace WebCore {
+namespace blink {
 
 class BoxShape FINAL : public Shape {
 public:
@@ -45,7 +45,7 @@ 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 LineSegment getExcludedInterval(LayoutUnit logicalTop, LayoutUnit logicalHeight) const OVERRIDE;
     virtual void buildDisplayPaths(DisplayPaths&) const OVERRIDE;
 
 private:
@@ -54,7 +54,7 @@ private:
     FloatRoundedRect m_bounds;
 };
 
-} // namespace WebCore
+} // namespace blink
 
 #endif // BoxShape_h