Index: Source/core/svg/SVGGElement.cpp |
diff --git a/Source/core/svg/SVGGElement.cpp b/Source/core/svg/SVGGElement.cpp |
index ed56de6d021214f4ec284cae1b85390a94f83da9..a4fb2219a7284e86867ea4164e9e1dff2041de0e 100644 |
--- a/Source/core/svg/SVGGElement.cpp |
+++ b/Source/core/svg/SVGGElement.cpp |
@@ -34,7 +34,7 @@ inline SVGGElement::SVGGElement(Document& document, ConstructionType constructio |
DEFINE_NODE_FACTORY(SVGGElement) |
-LayoutObject* SVGGElement::createLayoutObject(const LayoutStyle& style) |
+LayoutObject* SVGGElement::createLayoutObject(const ComputedStyle& style) |
{ |
// SVG 1.1 testsuite explicitely uses constructs like <g display="none"><linearGradient> |
// We still have to create renderers for the <g> & <linearGradient> element, though the |
@@ -46,7 +46,7 @@ LayoutObject* SVGGElement::createLayoutObject(const LayoutStyle& style) |
return new LayoutSVGTransformableContainer(this); |
} |
-bool SVGGElement::layoutObjectIsNeeded(const LayoutStyle&) |
+bool SVGGElement::layoutObjectIsNeeded(const ComputedStyle&) |
{ |
// Unlike SVGElement::layoutObjectIsNeeded(), we still create renderers, even if |
// display is set to 'none' - which is special to SVG <g> container elements. |