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

Unified Diff: Source/core/html/HTMLOListElement.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/html/HTMLLIElement.cpp ('k') | Source/core/html/HTMLSelectElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLOListElement.cpp
diff --git a/Source/core/html/HTMLOListElement.cpp b/Source/core/html/HTMLOListElement.cpp
index 7cab00e01866c756be7b4b8ab951edaa971a36e4..7245850bc8d8a3828671a0db8f05a4702d5b028f 100644
--- a/Source/core/html/HTMLOListElement.cpp
+++ b/Source/core/html/HTMLOListElement.cpp
@@ -26,7 +26,7 @@
#include "core/CSSPropertyNames.h"
#include "core/CSSValueKeywords.h"
#include "core/HTMLNames.h"
-#include "core/rendering/RenderListItem.h"
+#include "core/layout/LayoutListItem.h"
namespace blink {
@@ -99,12 +99,12 @@ void HTMLOListElement::updateItemValues()
if (!renderer())
return;
document().updateDistributionForNodeIfNeeded(this);
- RenderListItem::updateItemValuesForOrderedList(this);
+ LayoutListItem::updateItemValuesForOrderedList(this);
}
void HTMLOListElement::recalculateItemCount()
{
- m_itemCount = RenderListItem::itemCountForOrderedList(this);
+ m_itemCount = LayoutListItem::itemCountForOrderedList(this);
m_shouldRecalculateItemCount = false;
}
« no previous file with comments | « Source/core/html/HTMLLIElement.cpp ('k') | Source/core/html/HTMLSelectElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698