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

Unified Diff: Source/core/paint/SVGInlineFlowBoxPainter.cpp

Issue 977113003: Rename renderer() to layoutObject(). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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/paint/RootInlineBoxPainter.cpp ('k') | Source/core/paint/SVGInlineTextBoxPainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/SVGInlineFlowBoxPainter.cpp
diff --git a/Source/core/paint/SVGInlineFlowBoxPainter.cpp b/Source/core/paint/SVGInlineFlowBoxPainter.cpp
index 6fcdc8dc7734161a5e1517da852fdf9d29a96747..25e472d7043f982fa86723432f93e8ed86d910f7 100644
--- a/Source/core/paint/SVGInlineFlowBoxPainter.cpp
+++ b/Source/core/paint/SVGInlineFlowBoxPainter.cpp
@@ -30,7 +30,7 @@ void SVGInlineFlowBoxPainter::paint(const PaintInfo& paintInfo, const LayoutPoin
{
ASSERT(paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseSelection);
- SVGPaintContext paintContext(m_svgInlineFlowBox.renderer(), paintInfo);
+ SVGPaintContext paintContext(m_svgInlineFlowBox.layoutObject(), paintInfo);
if (paintContext.applyClipMaskAndFilterIfNecessary()) {
for (InlineBox* child = m_svgInlineFlowBox.firstChild(); child; child = child->nextOnLine())
child->paint(paintContext.paintInfo(), paintOffset, 0, 0);
« no previous file with comments | « Source/core/paint/RootInlineBoxPainter.cpp ('k') | Source/core/paint/SVGInlineTextBoxPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698