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

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

Issue 931423003: Rename rendering/RenderList* to layout/LayoutList* (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove spurious LayoutLayerModelObject reference 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/paint/ListItemPainter.h ('k') | Source/core/paint/ListMarkerPainter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/ListItemPainter.cpp
diff --git a/Source/core/paint/ListItemPainter.cpp b/Source/core/paint/ListItemPainter.cpp
index 81e06192ba07523593d943625497a92e62736958..2381754aabb8de3a7f770eefd919aa5e11b3d7f2 100644
--- a/Source/core/paint/ListItemPainter.cpp
+++ b/Source/core/paint/ListItemPainter.cpp
@@ -5,19 +5,19 @@
#include "config.h"
#include "core/paint/ListItemPainter.h"
+#include "core/layout/LayoutListItem.h"
#include "core/layout/PaintInfo.h"
#include "core/paint/BlockPainter.h"
-#include "core/rendering/RenderListItem.h"
#include "platform/geometry/LayoutPoint.h"
namespace blink {
void ListItemPainter::paint(const PaintInfo& paintInfo, const LayoutPoint& paintOffset)
{
- if (!m_renderListItem.logicalHeight() && m_renderListItem.hasOverflowClip())
+ if (!m_layoutListItem.logicalHeight() && m_layoutListItem.hasOverflowClip())
return;
- BlockPainter(m_renderListItem).paint(paintInfo, paintOffset);
+ BlockPainter(m_layoutListItem).paint(paintInfo, paintOffset);
}
} // namespace blink
« no previous file with comments | « Source/core/paint/ListItemPainter.h ('k') | Source/core/paint/ListMarkerPainter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698