Index: third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributes.h |
diff --git a/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributes.h b/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributes.h |
index b792bb8ff984c8e030bf6e896f4d096dc577e122..88c419ef86bef50a9962599643dc7a1d29dc07e2 100644 |
--- a/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributes.h |
+++ b/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributes.h |
@@ -20,12 +20,10 @@ |
#ifndef SVGTextLayoutAttributes_h |
#define SVGTextLayoutAttributes_h |
-#include "core/layout/svg/SVGTextMetrics.h" |
#include "wtf/Allocator.h" |
#include "wtf/HashMap.h" |
#include "wtf/MathExtras.h" |
#include "wtf/Noncopyable.h" |
-#include "wtf/Vector.h" |
namespace blink { |
@@ -59,13 +57,9 @@ public: |
SVGCharacterDataMap& characterDataMap() { return m_characterDataMap; } |
const SVGCharacterDataMap& characterDataMap() const { return m_characterDataMap; } |
- Vector<SVGTextMetrics>& textMetricsValues() { return m_textMetricsValues; } |
- const Vector<SVGTextMetrics>& textMetricsValues() const { return m_textMetricsValues; } |
- |
private: |
LayoutSVGInlineText* m_context; |
SVGCharacterDataMap m_characterDataMap; |
- Vector<SVGTextMetrics> m_textMetricsValues; |
}; |
inline SVGCharacterData::SVGCharacterData() |