Index: Source/core/paint/SVGShapePainter.h |
diff --git a/Source/core/paint/SVGShapePainter.h b/Source/core/paint/SVGShapePainter.h |
index ea4b0a10a616c24b6ab4335e1c56fabc81460784..1f2b9b23e2d315136e5fcf15afe6181d4be888fe 100644 |
--- a/Source/core/paint/SVGShapePainter.h |
+++ b/Source/core/paint/SVGShapePainter.h |
@@ -13,11 +13,11 @@ class FloatPoint; |
class GraphicsContext; |
class Path; |
class LayoutSVGResourceMarker; |
-class RenderSVGShape; |
+class LayoutSVGShape; |
class SVGShapePainter { |
public: |
- SVGShapePainter(RenderSVGShape& renderSVGShape) : m_renderSVGShape(renderSVGShape) { } |
+ SVGShapePainter(LayoutSVGShape& renderSVGShape) : m_renderSVGShape(renderSVGShape) { } |
void paint(const PaintInfo&); |
@@ -30,7 +30,7 @@ private: |
void strokeZeroLengthLineCaps(GraphicsContext*); |
Path* zeroLengthLinecapPath(const FloatPoint&) const; |
- RenderSVGShape& m_renderSVGShape; |
+ LayoutSVGShape& m_renderSVGShape; |
}; |
} // namespace blink |