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

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

Issue 977113003: Rename renderer() to layoutObject(). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase to master 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/layout/svg/SVGLayoutTreeAsText.cpp
diff --git a/Source/core/layout/svg/SVGLayoutTreeAsText.cpp b/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
index 1c93c211dd4ab250c0f780d4bc0323f4319cae9f..8ad48a09d565c3ebdd05d603d58d77d5d5ca86a8 100644
--- a/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
+++ b/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
@@ -405,10 +405,10 @@ static inline void writeSVGInlineTextBox(TextStream& ts, SVGInlineTextBox* textB
if (fragments.isEmpty())
return;
- LayoutSVGInlineText& textRenderer = toLayoutSVGInlineText(textBox->renderer());
+ LayoutSVGInlineText& textRenderer = toLayoutSVGInlineText(textBox->layoutObject());
const SVGLayoutStyle& svgStyle = textRenderer.style()->svgStyle();
- String text = textBox->renderer().text();
+ String text = textBox->layoutObject().text();
unsigned fragmentsSize = fragments.size();
for (unsigned i = 0; i < fragmentsSize; ++i) {

Powered by Google App Engine
This is Rietveld 408576698