| Index: third_party/WebKit/Source/core/layout/LayoutState.h
 | 
| diff --git a/third_party/WebKit/Source/core/layout/LayoutState.h b/third_party/WebKit/Source/core/layout/LayoutState.h
 | 
| index b892d73088c3ff3242c638cefbb3b05c74deba45..b666ec43515371615e0b34550eeff7a91864ec09 100644
 | 
| --- a/third_party/WebKit/Source/core/layout/LayoutState.h
 | 
| +++ b/third_party/WebKit/Source/core/layout/LayoutState.h
 | 
| @@ -67,13 +67,11 @@ class LayoutState {
 | 
|  
 | 
|   public:
 | 
|    // Constructor for root LayoutState created by LayoutView
 | 
| -  LayoutState(LayoutUnit pageLogicalHeight,
 | 
| -              LayoutView&);
 | 
| +  explicit LayoutState(LayoutView&);
 | 
|    // Constructor for sub-tree layout and orthogonal writing-mode roots
 | 
|    explicit LayoutState(LayoutObject& root);
 | 
|  
 | 
|    LayoutState(LayoutBox&,
 | 
| -              LayoutUnit pageLogicalHeight = LayoutUnit(),
 | 
|                bool containingBlockLogicalWidthChanged = false);
 | 
|  
 | 
|    ~LayoutState();
 | 
| @@ -94,7 +92,6 @@ class LayoutState {
 | 
|    };
 | 
|  
 | 
|    const LayoutSize& paginationOffset() const { return m_paginationOffset; }
 | 
| -  LayoutUnit pageLogicalHeight() const { return m_pageLogicalHeight; }
 | 
|    bool containingBlockLogicalWidthChanged() const {
 | 
|      return m_containingBlockLogicalWidthChanged;
 | 
|    }
 | 
| @@ -124,9 +121,6 @@ class LayoutState {
 | 
|    // relative positioning or scroll offsets.
 | 
|    LayoutSize m_paginationOffset;
 | 
|  
 | 
| -  // The current page height for the pagination model that encloses us.
 | 
| -  LayoutUnit m_pageLogicalHeight;
 | 
| -
 | 
|    // The height we need to make available for repeating table headers in
 | 
|    // paginated layout.
 | 
|    LayoutUnit m_heightOffsetForTableHeaders;
 | 
| 
 |