X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fcore%2Fsvg%2FSVGFontData.cpp;h=cf6747bc2b011287c332d9ab3e52fe0a72f38859;hb=4a1a0bdd01eef90b0826a0e761d3379d3715c10f;hp=c4cffb9c07a4b51356771ad6f7935fb6f80631c6;hpb=b1be5ca53587d23e7aeb77b26861fdc0a181ffd8;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/core/svg/SVGFontData.cpp b/src/third_party/WebKit/Source/core/svg/SVGFontData.cpp index c4cffb9..cf6747b 100644 --- a/src/third_party/WebKit/Source/core/svg/SVGFontData.cpp +++ b/src/third_party/WebKit/Source/core/svg/SVGFontData.cpp @@ -42,7 +42,7 @@ using namespace WTF; using namespace Unicode; -namespace WebCore { +namespace blink { SVGFontData::SVGFontData(SVGFontFaceElement* fontFaceElement) : CustomFontData() @@ -185,7 +185,7 @@ bool SVGFontData::applySVGGlyphSelection(WidthIterator& iterator, GlyphData& gly RenderObject* parentRenderObject = renderObject->isText() ? renderObject->parent() : renderObject; ASSERT(parentRenderObject); - isVerticalText = parentRenderObject->style()->svgStyle()->isVerticalWritingMode(); + isVerticalText = parentRenderObject->style()->svgStyle().isVerticalWritingMode(); if (Element* parentRenderObjectElement = toElement(parentRenderObject->node())) { language = parentRenderObjectElement->getAttribute(XMLNames::langAttr); @@ -334,6 +334,6 @@ bool SVGFontData::shouldSkipDrawing() const return !m_svgFontFaceElement || !m_svgFontFaceElement->inDocument(); } -} // namespace WebCore +} // namespace blink #endif