Index: Source/core/rendering/shapes/Shape.h |
diff --git a/Source/core/rendering/shapes/Shape.h b/Source/core/rendering/shapes/Shape.h |
index 426e822ed022414edb51624f5560e8be8daebd83..3c51dabebcf8640c803a6f79aa4a5dac779169de 100644 |
--- a/Source/core/rendering/shapes/Shape.h |
+++ b/Source/core/rendering/shapes/Shape.h |
@@ -61,9 +61,9 @@ typedef Vector<LineSegment> SegmentList; |
class Shape { |
public: |
- static PassOwnPtr<Shape> createShape(const BasicShape*, const LayoutSize& logicalBoxSize, WritingMode, Length margin); |
- static PassOwnPtr<Shape> createRasterShape(Image*, float threshold, const LayoutRect& imageRect, const LayoutRect& marginRect, WritingMode, Length margin); |
- static PassOwnPtr<Shape> createLayoutBoxShape(const RoundedRect&, WritingMode, const Length& margin); |
+ static PassOwnPtr<Shape> createShape(const BasicShape*, const LayoutSize& logicalBoxSize, WritingMode, float margin); |
+ static PassOwnPtr<Shape> createRasterShape(Image*, float threshold, const LayoutRect& imageRect, const LayoutRect& marginRect, WritingMode, float margin); |
+ static PassOwnPtr<Shape> createLayoutBoxShape(const RoundedRect&, WritingMode, float margin); |
virtual ~Shape() { } |