| Index: Source/core/rendering/svg/RenderSVGForeignObject.h
|
| diff --git a/Source/core/rendering/svg/RenderSVGForeignObject.h b/Source/core/rendering/svg/RenderSVGForeignObject.h
|
| index d43e0f0331a950dee6e9dfa0b1aab3ea305fa95f..0d1497ffad9ac41192de8717d3b7122a3ed70c1d 100644
|
| --- a/Source/core/rendering/svg/RenderSVGForeignObject.h
|
| +++ b/Source/core/rendering/svg/RenderSVGForeignObject.h
|
| @@ -34,7 +34,7 @@ public:
|
|
|
| virtual const char* renderName() const override { return "RenderSVGForeignObject"; }
|
|
|
| - virtual bool isChildAllowed(RenderObject*, const RenderStyle&) const override;
|
| + virtual bool isChildAllowed(LayoutObject*, const RenderStyle&) const override;
|
|
|
| virtual void paint(const PaintInfo&, const LayoutPoint&) override;
|
|
|
| @@ -45,7 +45,7 @@ public:
|
| virtual FloatRect paintInvalidationRectInLocalCoordinates() const override { return FloatRect(FloatPoint(), m_viewport.size()); }
|
|
|
| virtual bool nodeAtFloatPoint(const HitTestRequest&, HitTestResult&, const FloatPoint& pointInParent, HitTestAction) override;
|
| - virtual bool isOfType(RenderObjectType type) const override { return type == RenderObjectSVGForeignObject || RenderSVGBlock::isOfType(type); }
|
| + virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectSVGForeignObject || RenderSVGBlock::isOfType(type); }
|
|
|
| virtual void setNeedsTransformUpdate() override { m_needsTransformUpdate = true; }
|
|
|
|
|