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 1692b5a8467baf9894211e1166dd21328b425ea7..88170367ce49b57dfe42e06d5ad7a70919a87830 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; |