| Index: Source/core/paint/SVGImagePainter.h
|
| diff --git a/Source/core/paint/SVGImagePainter.h b/Source/core/paint/SVGImagePainter.h
|
| index f2841ae3bfcf76252526d412a8f91eff48ab131b..1e261e9da193673cbc018b83249f967d3d1a6878 100644
|
| --- a/Source/core/paint/SVGImagePainter.h
|
| +++ b/Source/core/paint/SVGImagePainter.h
|
| @@ -8,11 +8,11 @@
|
| namespace blink {
|
|
|
| struct PaintInfo;
|
| -class RenderSVGImage;
|
| +class LayoutSVGImage;
|
|
|
| class SVGImagePainter {
|
| public:
|
| - SVGImagePainter(RenderSVGImage& renderSVGImage) : m_renderSVGImage(renderSVGImage) { }
|
| + SVGImagePainter(LayoutSVGImage& renderSVGImage) : m_renderSVGImage(renderSVGImage) { }
|
|
|
| void paint(const PaintInfo&);
|
|
|
| @@ -20,7 +20,7 @@ private:
|
| // Assumes the PaintInfo context has had all local transforms applied.
|
| void paintForeground(const PaintInfo&);
|
|
|
| - RenderSVGImage& m_renderSVGImage;
|
| + LayoutSVGImage& m_renderSVGImage;
|
| };
|
|
|
| } // namespace blink
|
|
|