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

Unified Diff: Source/core/layout/svg/LayoutSVGResourceMarker.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.cpp ('k') | Source/core/layout/svg/SVGLayoutSupport.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/svg/LayoutSVGResourceMarker.cpp
diff --git a/Source/core/layout/svg/LayoutSVGResourceMarker.cpp b/Source/core/layout/svg/LayoutSVGResourceMarker.cpp
index 1d5104c89439340210a7370a8b111a455452f2aa..0308153dfd894c918f1ea060792ad1ede25e0290 100644
--- a/Source/core/layout/svg/LayoutSVGResourceMarker.cpp
+++ b/Source/core/layout/svg/LayoutSVGResourceMarker.cpp
@@ -22,8 +22,8 @@
#include "config.h"
#include "core/layout/svg/LayoutSVGResourceMarker.h"
+#include "core/layout/svg/LayoutSVGContainer.h"
#include "core/layout/svg/SVGLayoutSupport.h"
-#include "core/rendering/svg/RenderSVGContainer.h"
#include "wtf/TemporaryChange.h"
namespace blink {
@@ -46,9 +46,9 @@ void LayoutSVGResourceMarker::layout()
TemporaryChange<bool> inLayoutChange(m_isInLayout, true);
// RenderSVGHiddenContainer overwrites layout(). We need the
- // layouting of RenderSVGContainer for calculating local
+ // layouting of LayoutSVGContainer for calculating local
// transformations and paint invalidation.
- RenderSVGContainer::layout();
+ LayoutSVGContainer::layout();
clearInvalidationMask();
}
@@ -66,7 +66,7 @@ void LayoutSVGResourceMarker::removeClientFromCache(LayoutObject* client, bool m
FloatRect LayoutSVGResourceMarker::markerBoundaries(const AffineTransform& markerTransformation) const
{
- FloatRect coordinates = RenderSVGContainer::paintInvalidationRectInLocalCoordinates();
+ FloatRect coordinates = LayoutSVGContainer::paintInvalidationRectInLocalCoordinates();
// Map paint invalidation rect into parent coordinate space, in which the marker boundaries have to be evaluated
coordinates = localToParentTransform().mapRect(coordinates);
« no previous file with comments | « Source/core/layout/svg/LayoutSVGContainer.cpp ('k') | Source/core/layout/svg/SVGLayoutSupport.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698