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

Unified Diff: Source/core/layout/svg/SVGLayoutTreeAsText.cpp

Issue 933953003: Move the remaining rendering/svg/RenderSVG* files to layout. (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/SVGLayoutTreeAsText.h ('k') | Source/core/paint/SVGRootPainter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/svg/SVGLayoutTreeAsText.cpp
diff --git a/Source/core/layout/svg/SVGLayoutTreeAsText.cpp b/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
index a4fb9dae3e23d9092e235ef6b48e7cf8a8a5dc1d..e8376055fc9b6c6493c38b12d8b2c0fde6c37ff4 100644
--- a/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
+++ b/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
@@ -32,6 +32,7 @@
#include "core/layout/LayoutTreeAsText.h"
#include "core/layout/line/InlineTextBox.h"
+#include "core/layout/svg/LayoutSVGGradientStop.h"
#include "core/layout/svg/LayoutSVGImage.h"
#include "core/layout/svg/LayoutSVGInlineText.h"
#include "core/layout/svg/LayoutSVGResourceClipper.h"
@@ -41,12 +42,11 @@
#include "core/layout/svg/LayoutSVGResourceMasker.h"
#include "core/layout/svg/LayoutSVGResourcePattern.h"
#include "core/layout/svg/LayoutSVGResourceRadialGradient.h"
+#include "core/layout/svg/LayoutSVGRoot.h"
#include "core/layout/svg/LayoutSVGShape.h"
#include "core/layout/svg/LayoutSVGText.h"
#include "core/layout/svg/line/SVGInlineTextBox.h"
#include "core/layout/svg/line/SVGRootInlineBox.h"
-#include "core/rendering/svg/RenderSVGGradientStop.h"
-#include "core/rendering/svg/RenderSVGRoot.h"
#include "core/svg/LinearGradientAttributes.h"
#include "core/svg/PatternAttributes.h"
#include "core/svg/RadialGradientAttributes.h"
@@ -379,7 +379,7 @@ static TextStream& operator<<(TextStream& ts, const LayoutSVGShape& shape)
return ts;
}
-static TextStream& operator<<(TextStream& ts, const RenderSVGRoot& root)
+static TextStream& operator<<(TextStream& ts, const LayoutSVGRoot& root)
{
return writePositionAndStyle(ts, root);
}
@@ -591,7 +591,7 @@ void writeSVGContainer(TextStream& ts, const LayoutObject& container, int indent
writeChildren(ts, container, indent);
}
-void write(TextStream& ts, const RenderSVGRoot& root, int indent)
+void write(TextStream& ts, const LayoutSVGRoot& root, int indent)
{
writeStandardPrefix(ts, root, indent);
ts << root << "\n";
@@ -630,7 +630,7 @@ void write(TextStream& ts, const LayoutSVGShape& shape, int indent)
writeResources(ts, shape, indent);
}
-void writeSVGGradientStop(TextStream& ts, const RenderSVGGradientStop& stop, int indent)
+void writeSVGGradientStop(TextStream& ts, const LayoutSVGGradientStop& stop, int indent)
{
writeStandardPrefix(ts, stop, indent);
« no previous file with comments | « Source/core/layout/svg/SVGLayoutTreeAsText.h ('k') | Source/core/paint/SVGRootPainter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698