| 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;
|
| }
|
|
|
|
|