| Index: third_party/WebKit/Source/core/layout/LayoutListItem.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutListItem.cpp b/third_party/WebKit/Source/core/layout/LayoutListItem.cpp
|
| index badb3a06f52091495cb3760cd7c472f975a045fc..d463d30e9146d41c355659ca957d7c82b026e598 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutListItem.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutListItem.cpp
|
| @@ -40,7 +40,6 @@ LayoutListItem::LayoutListItem(Element* element)
|
| , m_marker(nullptr)
|
| , m_hasExplicitValue(false)
|
| , m_isValueUpToDate(false)
|
| - , m_notInList(false)
|
| {
|
| setInline(false);
|
|
|
| @@ -468,11 +467,6 @@ void LayoutListItem::clearExplicitValue()
|
| explicitValueChanged();
|
| }
|
|
|
| -void LayoutListItem::setNotInList(bool notInList)
|
| -{
|
| - m_notInList = notInList;
|
| -}
|
| -
|
| static LayoutListItem* previousOrNextItem(bool isListReversed, Node* list, LayoutListItem* item)
|
| {
|
| return isListReversed ? previousListItem(list, item) : nextListItem(list, item);
|
|
|