Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / rendering / svg / SVGTextLayoutEngineSpacing.h
index 26deab4..6db20d8 100644 (file)
@@ -21,6 +21,8 @@
 #define SVGTextLayoutEngineSpacing_h
 
 #include "core/rendering/svg/SVGTextMetrics.h"
+#include "wtf/Noncopyable.h"
+#include "wtf/unicode/Unicode.h"
 
 namespace blink {
 
@@ -32,17 +34,12 @@ class SVGTextLayoutEngineSpacing {
 public:
     SVGTextLayoutEngineSpacing(const Font&, float effectiveZoom);
 
-    float calculateSVGKerning(bool isVerticalText, Glyph currentGlyph);
     float calculateCSSSpacing(UChar currentCharacter);
 
 private:
     const Font& m_font;
     UChar m_lastCharacter;
     float m_effectiveZoom;
-
-#if ENABLE(SVG_FONTS)
-    Glyph m_lastGlyph;
-#endif
 };
 
 } // namespace blink