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

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

Issue 1095043003: Convert LayoutObject renderer names. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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/BoxPainter.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/ViewPainter.cpp
diff --git a/Source/core/paint/ViewPainter.cpp b/Source/core/paint/ViewPainter.cpp
index 0432bdede0d29f3cb4041389687ff523b227111c..6365dce2e4ba7fbaab5ceee7cc4fa97badc1ef04 100644
--- a/Source/core/paint/ViewPainter.cpp
+++ b/Source/core/paint/ViewPainter.cpp
@@ -49,8 +49,8 @@ static inline bool rendererObscuresBackground(LayoutBox* rootBox)
if (rootBox->compositingState() == PaintsIntoOwnBacking)
return false;
- const LayoutObject* rootRenderer = rootBox->rendererForRootBackground();
- if (rootRenderer->style()->backgroundClip() == TextFillBox)
+ const LayoutObject* rootLayoutObject = rootBox->layoutObjectForRootBackground();
+ if (rootLayoutObject->style()->backgroundClip() == TextFillBox)
return false;
return true;
« no previous file with comments | « Source/core/paint/BoxPainter.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698