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

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

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (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/rendering/svg/SVGTextQuery.h ('k') | Source/core/svg/SVGAElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/svg/SVGTextQuery.cpp
diff --git a/Source/core/rendering/svg/SVGTextQuery.cpp b/Source/core/rendering/svg/SVGTextQuery.cpp
index f5ed2d06bb7471a8d5da40380d673b42af5e9427..96eaee0af552c162a9d522fb50e6d5deab422079 100644
--- a/Source/core/rendering/svg/SVGTextQuery.cpp
+++ b/Source/core/rendering/svg/SVGTextQuery.cpp
@@ -47,7 +47,7 @@ struct SVGTextQuery::Data {
const SVGInlineTextBox* textBox;
};
-static inline InlineFlowBox* flowBoxForRenderer(RenderObject* renderer)
+static inline InlineFlowBox* flowBoxForRenderer(LayoutObject* renderer)
{
if (!renderer)
return 0;
@@ -77,7 +77,7 @@ static inline InlineFlowBox* flowBoxForRenderer(RenderObject* renderer)
return 0;
}
-SVGTextQuery::SVGTextQuery(RenderObject* renderer)
+SVGTextQuery::SVGTextQuery(LayoutObject* renderer)
{
collectTextBoxesInFlowBox(flowBoxForRenderer(renderer));
}
« no previous file with comments | « Source/core/rendering/svg/SVGTextQuery.h ('k') | Source/core/svg/SVGAElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698