Index: Source/core/rendering/style/RenderStyle.h |
diff --git a/Source/core/rendering/style/RenderStyle.h b/Source/core/rendering/style/RenderStyle.h |
index 75d996f1dc09f361cb62ab61c1a2bd37b5664b5b..eddf1a8db5c77f99b7079cf26287ac0e8a0a633f 100644 |
--- a/Source/core/rendering/style/RenderStyle.h |
+++ b/Source/core/rendering/style/RenderStyle.h |
@@ -1427,21 +1427,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) |
@@ -1450,7 +1435,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) |