Index: third_party/WebKit/Source/core/layout/FloatingObjects.h |
diff --git a/third_party/WebKit/Source/core/layout/FloatingObjects.h b/third_party/WebKit/Source/core/layout/FloatingObjects.h |
index e465f4043140bbad667f5f0069c6091768a8c6cc..0da336dc7cbfe7bd768ab146b15603d4ef1e26b4 100644 |
--- a/third_party/WebKit/Source/core/layout/FloatingObjects.h |
+++ b/third_party/WebKit/Source/core/layout/FloatingObjects.h |
@@ -72,9 +72,6 @@ public: |
const LayoutRect& frameRect() const { ASSERT(isPlaced()); return m_frameRect; } |
- int paginationStrut() const { return m_paginationStrut; } |
- void setPaginationStrut(int strut) { m_paginationStrut = strut; } |
- |
#if ENABLE(ASSERT) |
bool isInPlacedTree() const { return m_isInPlacedTree; } |
void setIsInPlacedTree(bool value) { m_isInPlacedTree = value; } |
@@ -98,7 +95,6 @@ private: |
LayoutBox* m_layoutObject; |
RootInlineBox* m_originatingLine; |
LayoutRect m_frameRect; |
- int m_paginationStrut; // FIXME: Is this class size-sensitive? Does this need 32-bits? |
unsigned m_type : 2; // Type (left or right aligned) |
unsigned m_shouldPaint : 1; |