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

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
Index: Source/core/rendering/svg/SVGTextQuery.cpp
diff --git a/Source/core/rendering/svg/SVGTextQuery.cpp b/Source/core/rendering/svg/SVGTextQuery.cpp
index 09a4f6dca2642f97f1ac81e2b21c40d70012f817..63fc502ef7fbb7f16f88f389b39a7f8672930597 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));
}

Powered by Google App Engine
This is Rietveld 408576698