| Index: Source/core/paint/SVGForeignObjectPainter.h
|
| diff --git a/Source/core/paint/SVGForeignObjectPainter.h b/Source/core/paint/SVGForeignObjectPainter.h
|
| index be9ca2dba290ef78e1182f90572f78c1672ca005..b28aba70078fcad19bad76433a6dfc2a95e63e9e 100644
|
| --- a/Source/core/paint/SVGForeignObjectPainter.h
|
| +++ b/Source/core/paint/SVGForeignObjectPainter.h
|
| @@ -8,15 +8,15 @@
|
| namespace blink {
|
|
|
| struct PaintInfo;
|
| -class RenderSVGForeignObject;
|
| +class LayoutSVGForeignObject;
|
|
|
| class SVGForeignObjectPainter {
|
| public:
|
| - SVGForeignObjectPainter(RenderSVGForeignObject& renderSVGForeignObject) : m_renderSVGForeignObject(renderSVGForeignObject) { }
|
| + SVGForeignObjectPainter(LayoutSVGForeignObject& renderSVGForeignObject) : m_renderSVGForeignObject(renderSVGForeignObject) { }
|
| void paint(const PaintInfo&);
|
|
|
| private:
|
| - RenderSVGForeignObject& m_renderSVGForeignObject;
|
| + LayoutSVGForeignObject& m_renderSVGForeignObject;
|
| };
|
|
|
| } // namespace blink
|
|
|