Index: Source/core/layout/svg/LayoutSVGShape.cpp |
diff --git a/Source/core/layout/svg/LayoutSVGShape.cpp b/Source/core/layout/svg/LayoutSVGShape.cpp |
index a1a6f3fc5acbd4f383741a5e02be06d890d0b0b1..85a89578b7034b5ca863b56468c7023430b24ee4 100644 |
--- a/Source/core/layout/svg/LayoutSVGShape.cpp |
+++ b/Source/core/layout/svg/LayoutSVGShape.cpp |
@@ -43,7 +43,7 @@ |
namespace blink { |
LayoutSVGShape::LayoutSVGShape(SVGGraphicsElement* node) |
- : RenderSVGModelObject(node) |
+ : LayoutSVGModelObject(node) |
, m_needsBoundariesUpdate(false) // Default is false, the cached rects are empty from the beginning. |
, m_needsShapeUpdate(true) // Default is true, so we grab a Path object once from SVGGraphicsElement. |
, m_needsTransformUpdate(true) // Default is true, so we grab a AffineTransform object once from SVGGraphicsElement. |
@@ -152,7 +152,7 @@ void LayoutSVGShape::layout() |
// If our bounds changed, notify the parents. |
if (updateCachedBoundariesInParents) |
- RenderSVGModelObject::setNeedsBoundariesUpdate(); |
+ LayoutSVGModelObject::setNeedsBoundariesUpdate(); |
clearNeedsLayout(); |
} |