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

Unified Diff: Source/core/paint/ListMarkerPainter.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/paint/ListItemPainter.cpp ('k') | Source/core/paint/ListMarkerPainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/ListMarkerPainter.h
diff --git a/Source/core/paint/ListMarkerPainter.h b/Source/core/paint/ListMarkerPainter.h
index 3494e7d1b36ac03856fc348defde66be44a54266..bba7cc5cf2d12f65ca5500959823ccfea684c721 100644
--- a/Source/core/paint/ListMarkerPainter.h
+++ b/Source/core/paint/ListMarkerPainter.h
@@ -9,12 +9,12 @@ namespace blink {
struct PaintInfo;
class Path;
+class LayoutListMarker;
class LayoutPoint;
-class RenderListMarker;
class ListMarkerPainter {
public:
- ListMarkerPainter(RenderListMarker& renderListMarker) : m_renderListMarker(renderListMarker) { }
+ ListMarkerPainter(LayoutListMarker& layoutListMarker) : m_layoutListMarker(layoutListMarker) { }
void paint(const PaintInfo&, const LayoutPoint& paintOffset);
@@ -22,7 +22,7 @@ private:
Path getCanonicalPath() const;
Path getPath(const LayoutPoint& origin) const;
- RenderListMarker& m_renderListMarker;
+ LayoutListMarker& m_layoutListMarker;
};
} // namespace blink
« no previous file with comments | « Source/core/paint/ListItemPainter.cpp ('k') | Source/core/paint/ListMarkerPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698