| Index: Source/core/dom/ElementRareData.h
|
| diff --git a/Source/core/dom/ElementRareData.h b/Source/core/dom/ElementRareData.h
|
| index 629c8bb69aa5ec1e9cf4ec5ab143532fb88f5583..6ca01ded4a2d55014881923193326752aa98271a 100644
|
| --- a/Source/core/dom/ElementRareData.h
|
| +++ b/Source/core/dom/ElementRareData.h
|
| @@ -63,10 +63,6 @@ public:
|
| clearFlag(TabIndexWasSetExplicitly);
|
| }
|
|
|
| - bool hasFlag(ElementFlags mask) const { return m_flags & mask; }
|
| - void setFlag(ElementFlags mask, bool value) { m_flags = (m_flags & ~mask) | (-(int32_t)value & mask); }
|
| - void clearFlag(ElementFlags mask) { m_flags &= ~mask; }
|
| -
|
| unsigned childIndex() const { return m_childIndex; }
|
| void setChildIndex(unsigned index) { m_childIndex = index; }
|
|
|
| @@ -126,7 +122,6 @@ public:
|
| private:
|
| short m_tabindex;
|
| unsigned short m_childIndex;
|
| - unsigned m_flags;
|
|
|
| LayoutSize m_minimumSizeForResizing;
|
| IntSize m_savedLayerScrollOffset;
|
| @@ -156,7 +151,6 @@ inline ElementRareData::ElementRareData(RenderObject* renderer)
|
| : NodeRareData(renderer)
|
| , m_tabindex(0)
|
| , m_childIndex(0)
|
| - , m_flags(0)
|
| , m_minimumSizeForResizing(defaultMinimumSizeForResizing())
|
| {
|
| }
|
|
|