Index: Source/core/rendering/style/SVGRenderStyleDefs.h |
diff --git a/Source/core/rendering/style/SVGRenderStyleDefs.h b/Source/core/rendering/style/SVGRenderStyleDefs.h |
index b624dc731da58e43dbe7894e3e2504e9ac437729..3fe3c5bd01a68472c7fef2b65b8755a39f15fd02 100644 |
--- a/Source/core/rendering/style/SVGRenderStyleDefs.h |
+++ b/Source/core/rendering/style/SVGRenderStyleDefs.h |
@@ -182,24 +182,6 @@ namespace WebCore { |
StyleStopData(const StyleStopData&); |
}; |
- class StyleTextData : public RefCounted<StyleTextData> { |
- public: |
- static PassRefPtr<StyleTextData> create() { return adoptRef(new StyleTextData); } |
- PassRefPtr<StyleTextData> copy() const { return adoptRef(new StyleTextData(*this)); } |
- |
- bool operator==(const StyleTextData& other) const; |
- bool operator!=(const StyleTextData& other) const |
- { |
- return !(*this == other); |
- } |
- |
- RefPtr<SVGLength> kerning; |
- |
- private: |
- StyleTextData(); |
- StyleTextData(const StyleTextData&); |
- }; |
- |
// Note: the rule for this class is, *no inheritance* of these props |
class StyleMiscData : public RefCounted<StyleMiscData> { |
public: |
@@ -216,7 +198,6 @@ namespace WebCore { |
float floodOpacity; |
Color lightingColor; |
- // non-inherited text stuff lives here not in StyleTextData. |
RefPtr<SVGLength> baselineShiftValue; |
private: |