Index: third_party/WebKit/Source/core/layout/FragmentainerIterator.cpp |
diff --git a/third_party/WebKit/Source/core/layout/FragmentainerIterator.cpp b/third_party/WebKit/Source/core/layout/FragmentainerIterator.cpp |
index 50f2d0019e24a6ca5d675e68347d52430b07e053..f7b8e61cf21fb8a7db235a9dbf024a404e8ce4aa 100644 |
--- a/third_party/WebKit/Source/core/layout/FragmentainerIterator.cpp |
+++ b/third_party/WebKit/Source/core/layout/FragmentainerIterator.cpp |
@@ -77,18 +77,11 @@ LayoutSize FragmentainerIterator::paginationOffset() const { |
CoordinateSpaceConversion::Visual); |
} |
-LayoutRect FragmentainerIterator::fragmentainerInFlowThread() const { |
- DCHECK(!atEnd()); |
- LayoutRect fragmentainerInFlowThread = |
- currentGroup().flowThreadPortionRectAt(m_currentFragmentainerIndex); |
- m_flowThread.flipForWritingMode(fragmentainerInFlowThread); |
- return fragmentainerInFlowThread; |
-} |
- |
-LayoutRect FragmentainerIterator::clipRectInFlowThread() const { |
+LayoutRect FragmentainerIterator::clipRectInFlowThread( |
+ MultiColumnFragmentainerGroup::ClipRectAxesSelector axesSelector) const { |
DCHECK(!atEnd()); |
LayoutRect clipRect = currentGroup().flowThreadPortionOverflowRectAt( |
- m_currentFragmentainerIndex); |
+ m_currentFragmentainerIndex, axesSelector); |
m_flowThread.flipForWritingMode(clipRect); |
return clipRect; |
} |