Index: third_party/WebKit/Source/core/layout/LayoutBlock.h |
diff --git a/third_party/WebKit/Source/core/layout/LayoutBlock.h b/third_party/WebKit/Source/core/layout/LayoutBlock.h |
index 10a6df4ca84190fa68860f875619bc80fd6a22f3..1d87901e6e1a8510b8c4a4627dc43300264abc5e 100644 |
--- a/third_party/WebKit/Source/core/layout/LayoutBlock.h |
+++ b/third_party/WebKit/Source/core/layout/LayoutBlock.h |
@@ -256,10 +256,6 @@ public: |
LayoutUnit startOffsetForContent() const { return style()->isLeftToRightDirection() ? logicalLeftOffsetForContent() : logicalWidth() - logicalRightOffsetForContent(); } |
LayoutUnit endOffsetForContent() const { return !style()->isLeftToRightDirection() ? logicalLeftOffsetForContent() : logicalWidth() - logicalRightOffsetForContent(); } |
- bool needsRecalcLogicalWidthAfterLayoutChildren() const { return m_needsRecalcLogicalWidthAfterLayoutChildren; } |
- void setNeedsRecalcLogicalWidthAfterLayoutChildren() { m_needsRecalcLogicalWidthAfterLayoutChildren = true; } |
- void clearNeedsRecalcLogicalWidthAfterLayoutChildren() { m_needsRecalcLogicalWidthAfterLayoutChildren = false; } |
- |
virtual LayoutUnit logicalLeftSelectionOffset(const LayoutBlock* rootBlock, LayoutUnit position) const; |
virtual LayoutUnit logicalRightSelectionOffset(const LayoutBlock* rootBlock, LayoutUnit position) const; |
@@ -491,7 +487,6 @@ protected: |
unsigned m_widthAvailableToChildrenChanged : 1; |
mutable unsigned m_hasOnlySelfCollapsingChildren : 1; |
mutable unsigned m_descendantsWithFloatsMarkedForLayout : 1; |
- mutable unsigned m_needsRecalcLogicalWidthAfterLayoutChildren : 1; |
unsigned m_hasPositionedObjects : 1; |
unsigned m_hasPercentHeightDescendants : 1; |