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

Unified Diff: Source/core/layout/svg/LayoutSVGContainer.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
« no previous file with comments | « Source/core/layout/svg/LayoutSVGContainer.h ('k') | Source/core/layout/svg/LayoutSVGResourceMarker.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/svg/LayoutSVGContainer.cpp
diff --git a/Source/core/rendering/svg/RenderSVGContainer.cpp b/Source/core/layout/svg/LayoutSVGContainer.cpp
similarity index 89%
rename from Source/core/rendering/svg/RenderSVGContainer.cpp
rename to Source/core/layout/svg/LayoutSVGContainer.cpp
index ffe5446e1f22f11f3d3a4f63010acde230a9829a..ef50ef72dc4cd3f6a7f9cf8963eb1c5d6ce6935c 100644
--- a/Source/core/rendering/svg/RenderSVGContainer.cpp
+++ b/Source/core/layout/svg/LayoutSVGContainer.cpp
@@ -22,7 +22,7 @@
*/
#include "config.h"
-#include "core/rendering/svg/RenderSVGContainer.h"
+#include "core/layout/svg/LayoutSVGContainer.h"
#include "core/layout/svg/SVGLayoutSupport.h"
#include "core/layout/svg/SVGResources.h"
@@ -31,7 +31,7 @@
namespace blink {
-RenderSVGContainer::RenderSVGContainer(SVGElement* node)
+LayoutSVGContainer::LayoutSVGContainer(SVGElement* node)
: RenderSVGModelObject(node)
, m_objectBoundingBoxValid(false)
, m_needsBoundariesUpdate(true)
@@ -40,11 +40,11 @@ RenderSVGContainer::RenderSVGContainer(SVGElement* node)
{
}
-RenderSVGContainer::~RenderSVGContainer()
+LayoutSVGContainer::~LayoutSVGContainer()
{
}
-void RenderSVGContainer::layout()
+void LayoutSVGContainer::layout()
{
ASSERT(needsLayout());
@@ -74,7 +74,7 @@ void RenderSVGContainer::layout()
clearNeedsLayout();
}
-void RenderSVGContainer::addChild(LayoutObject* child, LayoutObject* beforeChild)
+void LayoutSVGContainer::addChild(LayoutObject* child, LayoutObject* beforeChild)
{
RenderSVGModelObject::addChild(child, beforeChild);
SVGResourcesCache::clientWasAddedToTree(child, child->styleRef());
@@ -84,7 +84,7 @@ void RenderSVGContainer::addChild(LayoutObject* child, LayoutObject* beforeChild
descendantIsolationRequirementsChanged(DescendantIsolationRequired);
}
-void RenderSVGContainer::removeChild(LayoutObject* child)
+void LayoutSVGContainer::removeChild(LayoutObject* child)
{
SVGResourcesCache::clientWillBeRemovedFromTree(child);
RenderSVGModelObject::removeChild(child);
@@ -94,13 +94,13 @@ void RenderSVGContainer::removeChild(LayoutObject* child)
descendantIsolationRequirementsChanged(DescendantIsolationNeedsUpdate);
}
-bool RenderSVGContainer::selfWillPaint()
+bool LayoutSVGContainer::selfWillPaint()
{
SVGResources* resources = SVGResourcesCache::cachedResourcesForLayoutObject(this);
return resources && resources->filter();
}
-void RenderSVGContainer::styleDidChange(StyleDifference diff, const LayoutStyle* oldStyle)
+void LayoutSVGContainer::styleDidChange(StyleDifference diff, const LayoutStyle* oldStyle)
{
RenderSVGModelObject::styleDidChange(diff, oldStyle);
@@ -114,7 +114,7 @@ void RenderSVGContainer::styleDidChange(StyleDifference diff, const LayoutStyle*
parent()->descendantIsolationRequirementsChanged(SVGLayoutSupport::willIsolateBlendingDescendantsForObject(this) ? DescendantIsolationNeedsUpdate : DescendantIsolationRequired);
}
-bool RenderSVGContainer::hasNonIsolatedBlendingDescendants() const
+bool LayoutSVGContainer::hasNonIsolatedBlendingDescendants() const
{
if (m_hasNonIsolatedBlendingDescendantsDirty) {
m_hasNonIsolatedBlendingDescendants = SVGLayoutSupport::computeHasNonIsolatedBlendingDescendants(this);
@@ -123,7 +123,7 @@ bool RenderSVGContainer::hasNonIsolatedBlendingDescendants() const
return m_hasNonIsolatedBlendingDescendants;
}
-void RenderSVGContainer::descendantIsolationRequirementsChanged(DescendantIsolationState state)
+void LayoutSVGContainer::descendantIsolationRequirementsChanged(DescendantIsolationState state)
{
switch (state) {
case DescendantIsolationRequired:
@@ -142,25 +142,25 @@ void RenderSVGContainer::descendantIsolationRequirementsChanged(DescendantIsolat
parent()->descendantIsolationRequirementsChanged(state);
}
-void RenderSVGContainer::paint(const PaintInfo& paintInfo, const LayoutPoint&)
+void LayoutSVGContainer::paint(const PaintInfo& paintInfo, const LayoutPoint&)
{
SVGContainerPainter(*this).paint(paintInfo);
}
-void RenderSVGContainer::addFocusRingRects(Vector<LayoutRect>& rects, const LayoutPoint&) const
+void LayoutSVGContainer::addFocusRingRects(Vector<LayoutRect>& rects, const LayoutPoint&) const
{
LayoutRect contentRect = LayoutRect(paintInvalidationRectInLocalCoordinates());
if (!contentRect.isEmpty())
rects.append(contentRect);
}
-void RenderSVGContainer::updateCachedBoundaries()
+void LayoutSVGContainer::updateCachedBoundaries()
{
SVGLayoutSupport::computeContainerBoundingBoxes(this, m_objectBoundingBox, m_objectBoundingBoxValid, m_strokeBoundingBox, m_paintInvalidationBoundingBox);
SVGLayoutSupport::intersectPaintInvalidationRectWithResources(this, m_paintInvalidationBoundingBox);
}
-bool RenderSVGContainer::nodeAtFloatPoint(const HitTestRequest& request, HitTestResult& result, const FloatPoint& pointInParent, HitTestAction hitTestAction)
+bool LayoutSVGContainer::nodeAtFloatPoint(const HitTestRequest& request, HitTestResult& result, const FloatPoint& pointInParent, HitTestAction hitTestAction)
{
// Give RenderSVGViewportContainer a chance to apply its viewport clip
if (!pointIsInsideViewportClip(pointInParent))
« no previous file with comments | « Source/core/layout/svg/LayoutSVGContainer.h ('k') | Source/core/layout/svg/LayoutSVGResourceMarker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698