Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1527)

Unified Diff: Source/core/rendering/svg/RenderSVGForeignObject.h

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/rendering/svg/RenderSVGForeignObject.h
diff --git a/Source/core/rendering/svg/RenderSVGForeignObject.h b/Source/core/rendering/svg/RenderSVGForeignObject.h
index 0ec3dd553bb435fe6329271e5e516aaa222c7d91..bd25b8d35da8c263527522ca08846f55ce3c7cea 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*, RenderStyle*) const override;
+ virtual bool isChildAllowed(LayoutObject*, 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; }

Powered by Google App Engine
This is Rietveld 408576698