Index: Source/core/layout/svg/LayoutSVGText.cpp |
diff --git a/Source/core/layout/svg/LayoutSVGText.cpp b/Source/core/layout/svg/LayoutSVGText.cpp |
index 0a1d592aa90a635bfddbd4a6734cc68eaf2023dd..e61e9f8401ce091637ba2f2534b3cf91b470f6aa 100644 |
--- a/Source/core/layout/svg/LayoutSVGText.cpp |
+++ b/Source/core/layout/svg/LayoutSVGText.cpp |
@@ -69,7 +69,7 @@ LayoutSVGText::~LayoutSVGText() |
ASSERT(m_layoutAttributes.isEmpty()); |
} |
-bool LayoutSVGText::isChildAllowed(LayoutObject* child, const LayoutStyle&) const |
+bool LayoutSVGText::isChildAllowed(LayoutObject* child, const ComputedStyle&) const |
{ |
return child->isSVGInline() || (child->isText() && SVGLayoutSupport::isLayoutableTextNode(child)); |
} |
@@ -468,7 +468,7 @@ void LayoutSVGText::paint(const PaintInfo& paintInfo, const LayoutPoint&) |
FloatRect LayoutSVGText::strokeBoundingBox() const |
{ |
FloatRect strokeBoundaries = objectBoundingBox(); |
- const SVGLayoutStyle& svgStyle = style()->svgStyle(); |
+ const SVGComputedStyle& svgStyle = style()->svgStyle(); |
if (!svgStyle.hasStroke()) |
return strokeBoundaries; |