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

Unified Diff: Source/core/rendering/svg/RenderSVGTransformableContainer.cpp

Issue 923533002: Move RenderSVGContainer to layout/svg/LayoutSVGContainer. (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/RenderSVGTransformableContainer.cpp
diff --git a/Source/core/rendering/svg/RenderSVGTransformableContainer.cpp b/Source/core/rendering/svg/RenderSVGTransformableContainer.cpp
index dd181f7bce98bdc214ec6ad05242395d875b9951..bd36cbf92ef1c80dd5866ece46e24f42426ff670 100644
--- a/Source/core/rendering/svg/RenderSVGTransformableContainer.cpp
+++ b/Source/core/rendering/svg/RenderSVGTransformableContainer.cpp
@@ -31,7 +31,7 @@
namespace blink {
RenderSVGTransformableContainer::RenderSVGTransformableContainer(SVGGraphicsElement* node)
- : RenderSVGContainer(node)
+ : LayoutSVGContainer(node)
, m_needsTransformUpdate(true)
, m_didTransformToRootUpdate(false)
{
@@ -66,7 +66,7 @@ bool RenderSVGTransformableContainer::isChildAllowed(LayoutObject* child, const
if (parent() && parent()->isSVG())
return parent()->isChildAllowed(child, style);
}
- return RenderSVGContainer::isChildAllowed(child, style);
+ return LayoutSVGContainer::isChildAllowed(child, style);
}
bool RenderSVGTransformableContainer::calculateLocalTransform()
« no previous file with comments | « Source/core/rendering/svg/RenderSVGTransformableContainer.h ('k') | Source/core/rendering/svg/RenderSVGViewportContainer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698