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

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

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/page/AutoscrollController.cpp ('k') | Source/core/paint/ListItemPainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/ListItemPainter.h
diff --git a/Source/core/paint/ListItemPainter.h b/Source/core/paint/ListItemPainter.h
index de59f1acba94b66aae14d4690352e9262ff737b2..d28787b24f2af29c81bf8236c9f8f84140c97dee 100644
--- a/Source/core/paint/ListItemPainter.h
+++ b/Source/core/paint/ListItemPainter.h
@@ -9,12 +9,12 @@ namespace blink {
struct PaintInfo;
class Path;
+class LayoutListItem;
class LayoutPoint;
-class RenderListItem;
class ListItemPainter {
public:
- ListItemPainter(RenderListItem& renderListItem) : m_renderListItem(renderListItem) { }
+ ListItemPainter(LayoutListItem& layoutListItem) : m_layoutListItem(layoutListItem) { }
void paint(const PaintInfo&, const LayoutPoint& paintOffset);
@@ -22,7 +22,7 @@ private:
Path getCanonicalPath() const;
Path getPath(const LayoutPoint& origin) const;
- RenderListItem& m_renderListItem;
+ LayoutListItem& m_layoutListItem;
};
} // namespace blink
« no previous file with comments | « Source/core/page/AutoscrollController.cpp ('k') | Source/core/paint/ListItemPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698