| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp | 
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp | 
| index 1805856d34588fe651420ad41c44405e6664c9a3..a07b52811d317988a2233c27b668a701c60e7f54 100644 | 
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp | 
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp | 
| @@ -47,15 +47,13 @@ namespace blink { | 
|  | 
| LayoutSVGShape::LayoutSVGShape(SVGGeometryElement* 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 SVGGeometryElement. | 
| -      , | 
| -      m_needsTransformUpdate( | 
| -          true)  // Default is true, so we grab a AffineTransform object once from SVGGeometryElement. | 
| -{} | 
| +      // Default is false, the cached rects are empty from the beginning. | 
| +      m_needsBoundariesUpdate(false), | 
| +      // Default is true, so we grab a Path object once from SVGGeometryElement. | 
| +      m_needsShapeUpdate(true), | 
| +      // Default is true, so we grab a AffineTransform object once from | 
| +      // SVGGeometryElement. | 
| +      m_needsTransformUpdate(true) {} | 
|  | 
| LayoutSVGShape::~LayoutSVGShape() {} | 
|  | 
|  |