| Index: Source/core/svg/SVGGraphicsElement.cpp
|
| diff --git a/Source/core/svg/SVGGraphicsElement.cpp b/Source/core/svg/SVGGraphicsElement.cpp
|
| index aa4f6d7af8dab49eda1d9df59fc2b7ced601a105..d4c801989e6b0b638f95b5c25f00ba33d98ad582 100644
|
| --- a/Source/core/svg/SVGGraphicsElement.cpp
|
| +++ b/Source/core/svg/SVGGraphicsElement.cpp
|
| @@ -218,7 +218,7 @@ void SVGGraphicsElement::svgAttributeChanged(const QualifiedName& attrName)
|
| return;
|
| }
|
|
|
| - RenderObject* object = renderer();
|
| + LayoutObject* object = renderer();
|
| if (!object)
|
| return;
|
|
|
| @@ -267,7 +267,7 @@ PassRefPtrWillBeRawPtr<SVGRectTearOff> SVGGraphicsElement::getBBoxFromJavascript
|
| return SVGRectTearOff::create(SVGRect::create(getBBox()), 0, PropertyIsNotAnimVal);
|
| }
|
|
|
| -RenderObject* SVGGraphicsElement::createRenderer(const RenderStyle&)
|
| +LayoutObject* SVGGraphicsElement::createRenderer(const RenderStyle&)
|
| {
|
| // By default, any subclass is expected to do path-based drawing
|
| return new RenderSVGPath(this);
|
|
|