summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/rendering/svg/SVGTextLayoutAttributes.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/rendering/svg/SVGTextLayoutAttributes.h')
-rw-r--r--Source/WebCore/rendering/svg/SVGTextLayoutAttributes.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/Source/WebCore/rendering/svg/SVGTextLayoutAttributes.h b/Source/WebCore/rendering/svg/SVGTextLayoutAttributes.h
index d08d5b7..fc6bd10 100644
--- a/Source/WebCore/rendering/svg/SVGTextLayoutAttributes.h
+++ b/Source/WebCore/rendering/svg/SVGTextLayoutAttributes.h
@@ -27,15 +27,19 @@
namespace WebCore {
+class RenderSVGInlineText;
+
class SVGTextLayoutAttributes {
public:
- SVGTextLayoutAttributes();
+ SVGTextLayoutAttributes(RenderSVGInlineText* context = 0);
void reserveCapacity(unsigned length);
void dump() const;
static float emptyValue();
+ RenderSVGInlineText* context() const { return m_context; }
+
Vector<float>& xValues() { return m_xValues; }
const Vector<float>& xValues() const { return m_xValues; }
@@ -55,6 +59,7 @@ public:
const Vector<SVGTextMetrics>& textMetricsValues() const { return m_textMetricsValues; }
private:
+ RenderSVGInlineText* m_context;
Vector<float> m_xValues;
Vector<float> m_yValues;
Vector<float> m_dxValues;