Index: Source/core/rendering/style/RenderStyle.h |
diff --git a/Source/core/rendering/style/RenderStyle.h b/Source/core/rendering/style/RenderStyle.h |
index 3cbdf5073e1f503a45420bde7718bc1239b66552..4c8b18ad3bc0fd1e6a86e233345f02fb14795a50 100644 |
--- a/Source/core/rendering/style/RenderStyle.h |
+++ b/Source/core/rendering/style/RenderStyle.h |
@@ -1422,21 +1422,6 @@ public: |
PassRefPtr<SVGLength> kerning() const { return svgStyle()->kerning(); } |
void setKerning(PassRefPtr<SVGLength> k) { accessSVGStyle()->setKerning(k); } |
- void setShapeInside(PassRefPtr<ShapeValue> value) |
- { |
- if (rareNonInheritedData->m_shapeInside == value) |
- return; |
- rareNonInheritedData.access()->m_shapeInside = value; |
- } |
- ShapeValue* shapeInside() const { return rareNonInheritedData->m_shapeInside.get(); } |
- ShapeValue* resolvedShapeInside() const |
- { |
- ShapeValue* shapeInside = this->shapeInside(); |
- if (shapeInside && shapeInside->type() == ShapeValue::Outside) |
- return shapeOutside(); |
- return shapeInside; |
- } |
- |
void setShapeOutside(PassRefPtr<ShapeValue> value) |
{ |
if (rareNonInheritedData->m_shapeOutside == value) |
@@ -1445,7 +1430,6 @@ public: |
} |
ShapeValue* shapeOutside() const { return rareNonInheritedData->m_shapeOutside.get(); } |
- static ShapeValue* initialShapeInside() { return 0; } |
static ShapeValue* initialShapeOutside() { return 0; } |
void setClipPath(PassRefPtr<ClipPathOperation> operation) |