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

Unified Diff: Source/core/layout/LayoutListMarker.h

Issue 926193003: Move rendering/RenderBox to layout/LayoutBox. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/layout/LayoutListItem.cpp ('k') | Source/core/layout/LayoutListMarker.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutListMarker.h
diff --git a/Source/core/layout/LayoutListMarker.h b/Source/core/layout/LayoutListMarker.h
index be2e10caa96fd3d1d66845f834698ef48b3dad51..bd3c9d8d7fd61491e7bc5c6cbae2857b80663aef 100644
--- a/Source/core/layout/LayoutListMarker.h
+++ b/Source/core/layout/LayoutListMarker.h
@@ -23,7 +23,7 @@
#ifndef LayoutListMarker_h
#define LayoutListMarker_h
-#include "core/rendering/RenderBox.h"
+#include "core/layout/LayoutBox.h"
namespace blink {
@@ -33,7 +33,7 @@ String listMarkerText(EListStyleType, int value);
// Used to render the list item's marker.
// The LayoutListMarker always has to be a child of a LayoutListItem.
-class LayoutListMarker final : public RenderBox {
+class LayoutListMarker final : public LayoutBox {
public:
static LayoutListMarker* createAnonymous(LayoutListItem*);
@@ -62,7 +62,7 @@ private:
virtual const char* renderName() const override { return "LayoutListMarker"; }
virtual void computePreferredLogicalWidths() override;
- virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectListMarker || RenderBox::isOfType(type); }
+ virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectListMarker || LayoutBox::isOfType(type); }
virtual void paint(const PaintInfo&, const LayoutPoint&) override;
« no previous file with comments | « Source/core/layout/LayoutListItem.cpp ('k') | Source/core/layout/LayoutListMarker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698