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

Unified Diff: Source/core/layout/LayoutTreeAsText.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/LayoutPart.cpp ('k') | Source/core/layout/PaintInvalidationState.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutTreeAsText.cpp
diff --git a/Source/core/layout/LayoutTreeAsText.cpp b/Source/core/layout/LayoutTreeAsText.cpp
index 696e49c48e5f0d20a8531477ef427f23fbbc0bdb..bf6f1634a5a49cd419be22d5aeea68e09d12ed04 100644
--- a/Source/core/layout/LayoutTreeAsText.cpp
+++ b/Source/core/layout/LayoutTreeAsText.cpp
@@ -41,9 +41,11 @@
#include "core/layout/compositing/CompositedLayerMapping.h"
#include "core/layout/line/InlineTextBox.h"
#include "core/layout/svg/LayoutSVGContainer.h"
+#include "core/layout/svg/LayoutSVGGradientStop.h"
#include "core/layout/svg/LayoutSVGImage.h"
#include "core/layout/svg/LayoutSVGInlineText.h"
#include "core/layout/svg/LayoutSVGPath.h"
+#include "core/layout/svg/LayoutSVGRoot.h"
#include "core/layout/svg/LayoutSVGText.h"
#include "core/layout/svg/SVGLayoutTreeAsText.h"
#include "core/page/PrintContext.h"
@@ -53,8 +55,6 @@
#include "core/rendering/RenderListItem.h"
#include "core/rendering/RenderListMarker.h"
#include "core/rendering/RenderView.h"
-#include "core/rendering/svg/RenderSVGGradientStop.h"
-#include "core/rendering/svg/RenderSVGRoot.h"
#include "wtf/HexNumber.h"
#include "wtf/Vector.h"
#include "wtf/unicode/CharacterNames.h"
@@ -436,7 +436,7 @@ void write(TextStream& ts, const LayoutObject& o, int indent, LayoutAsTextBehavi
return;
}
if (o.isSVGGradientStop()) {
- writeSVGGradientStop(ts, toRenderSVGGradientStop(o), indent);
+ writeSVGGradientStop(ts, toLayoutSVGGradientStop(o), indent);
return;
}
if (o.isSVGResourceContainer()) {
@@ -448,7 +448,7 @@ void write(TextStream& ts, const LayoutObject& o, int indent, LayoutAsTextBehavi
return;
}
if (o.isSVGRoot()) {
- write(ts, toRenderSVGRoot(o), indent);
+ write(ts, toLayoutSVGRoot(o), indent);
return;
}
if (o.isSVGText()) {
« no previous file with comments | « Source/core/layout/LayoutPart.cpp ('k') | Source/core/layout/PaintInvalidationState.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698