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

Unified Diff: Source/core/layout/LayoutObject.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/layout/LayoutListMarker.cpp ('k') | Source/core/layout/LayoutTreeAsText.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutObject.cpp
diff --git a/Source/core/layout/LayoutObject.cpp b/Source/core/layout/LayoutObject.cpp
index 9e6f0255601175e42958525972ec8e55e22ab4b2..54b1657eec5e44d1030f772ff83c6ac0bc709133 100644
--- a/Source/core/layout/LayoutObject.cpp
+++ b/Source/core/layout/LayoutObject.cpp
@@ -55,6 +55,7 @@
#include "core/layout/LayoutGeometryMap.h"
#include "core/layout/LayoutImage.h"
#include "core/layout/LayoutImageResourceStyleImage.h"
+#include "core/layout/LayoutListItem.h"
#include "core/layout/LayoutMultiColumnSpannerPlaceholder.h"
#include "core/layout/LayoutObjectInlines.h"
#include "core/layout/LayoutPart.h"
@@ -76,7 +77,6 @@
#include "core/rendering/RenderFlexibleBox.h"
#include "core/rendering/RenderGrid.h"
#include "core/rendering/RenderInline.h"
-#include "core/rendering/RenderListItem.h"
#include "core/rendering/RenderView.h"
#include "platform/JSONValues.h"
#include "platform/Partitions.h"
@@ -185,7 +185,7 @@ LayoutObject* LayoutObject::createObject(Element* element, const LayoutStyle& st
case INLINE_BLOCK:
return new RenderBlockFlow(element);
case LIST_ITEM:
- return new RenderListItem(element);
+ return new LayoutListItem(element);
case TABLE:
case INLINE_TABLE:
return new LayoutTable(element);
« no previous file with comments | « Source/core/layout/LayoutListMarker.cpp ('k') | Source/core/layout/LayoutTreeAsText.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698