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

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

Issue 1854623002: [css-grid] Use the margin box for non auto minimum sizes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months 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/LayoutGrid.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutGrid.h b/third_party/WebKit/Source/core/layout/LayoutGrid.h
index 742eaa859376472872daaa4def93e7e7fc7176e8..7ce88622375fafa24705c14208fef0b21d6dcdac 100644
--- a/third_party/WebKit/Source/core/layout/LayoutGrid.h
+++ b/third_party/WebKit/Source/core/layout/LayoutGrid.h
@@ -148,7 +148,8 @@ private:
GridTrackSize gridTrackSize(GridTrackSizingDirection, size_t) const;
- LayoutUnit logicalHeightForChild(LayoutBox&, GridSizingData&);
+ bool updateOverrideContainingBlockContentLogicalWidthForChild(LayoutBox&, GridSizingData&);
jfernandez 2016/04/01 13:40:31 Shouldn't we use const for the GridSizingData argu
+ LayoutUnit logicalHeightForChild(LayoutBox&, GridSizingData&, bool overrideWidthHasChanged);
LayoutUnit minSizeForChild(LayoutBox&, GridTrackSizingDirection, GridSizingData&);
LayoutUnit minContentForChild(LayoutBox&, GridTrackSizingDirection, GridSizingData&);
LayoutUnit maxContentForChild(LayoutBox&, GridTrackSizingDirection, GridSizingData&);

Powered by Google App Engine
This is Rietveld 408576698