Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1232)

Unified Diff: third_party/WebKit/Source/core/layout/MultiColumnFragmentainerGroup.h

Issue 1406973008: Calculate minimum column height after layout. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: code review Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/layout/MultiColumnFragmentainerGroup.h
diff --git a/third_party/WebKit/Source/core/layout/MultiColumnFragmentainerGroup.h b/third_party/WebKit/Source/core/layout/MultiColumnFragmentainerGroup.h
index a78072e3516703ce7ab5a2dbe8b1b68062603ae0..54116a34840e31d36098cac6273fc5e20563c03d 100644
--- a/third_party/WebKit/Source/core/layout/MultiColumnFragmentainerGroup.h
+++ b/third_party/WebKit/Source/core/layout/MultiColumnFragmentainerGroup.h
@@ -61,7 +61,6 @@ public:
bool heightIsAuto() const;
void resetColumnHeight();
- void updateMinimumColumnHeight(LayoutUnit height) { m_minimumColumnHeight = std::max(height, m_minimumColumnHeight); }
bool recalculateColumnHeight(BalancedColumnHeightCalculation calculationMode);
LayoutSize flowThreadTranslationAtOffset(LayoutUnit offsetInFlowThread) const;
@@ -113,9 +112,7 @@ private:
LayoutUnit m_columnHeight;
- // The following variables are used when balancing the column set.
LayoutUnit m_maxColumnHeight; // Maximum column height allowed.
- LayoutUnit m_minimumColumnHeight;
};
// List of all fragmentainer groups within a column set. There will always be at least one

Powered by Google App Engine
This is Rietveld 408576698