| Index: Source/core/layout/svg/LayoutSVGImage.cpp
|
| diff --git a/Source/core/layout/svg/LayoutSVGImage.cpp b/Source/core/layout/svg/LayoutSVGImage.cpp
|
| index a82d9645fbf140ab5a3ae9e4210409c9e5b67ff9..1a7140412d0bddf002c2895a4377e1d317dcb52e 100644
|
| --- a/Source/core/layout/svg/LayoutSVGImage.cpp
|
| +++ b/Source/core/layout/svg/LayoutSVGImage.cpp
|
| @@ -42,7 +42,7 @@
|
| namespace blink {
|
|
|
| LayoutSVGImage::LayoutSVGImage(SVGImageElement* impl)
|
| - : RenderSVGModelObject(impl)
|
| + : LayoutSVGModelObject(impl)
|
| , m_needsBoundariesUpdate(true)
|
| , m_needsTransformUpdate(true)
|
| , m_imageResource(LayoutImageResource::create())
|
| @@ -58,7 +58,7 @@ void LayoutSVGImage::destroy()
|
| {
|
| ImageQualityController::remove(this);
|
| m_imageResource->shutdown();
|
| - RenderSVGModelObject::destroy();
|
| + LayoutSVGModelObject::destroy();
|
| }
|
|
|
| FloatSize LayoutSVGImage::computeImageViewportSize(ImageResource& cachedImage) const
|
| @@ -137,7 +137,7 @@ void LayoutSVGImage::layout()
|
|
|
| // If our bounds changed, notify the parents.
|
| if (transformOrBoundariesUpdate)
|
| - RenderSVGModelObject::setNeedsBoundariesUpdate();
|
| + LayoutSVGModelObject::setNeedsBoundariesUpdate();
|
|
|
| clearNeedsLayout();
|
| }
|
|
|