| Index: Source/core/layout/LayoutGrid.h
|
| diff --git a/Source/core/layout/LayoutGrid.h b/Source/core/layout/LayoutGrid.h
|
| index 0a50e9c3763348c7ed68f6a273f16c398803aee3..ae6a60ab929d77e1e94c1e084462d7b485c5166c 100644
|
| --- a/Source/core/layout/LayoutGrid.h
|
| +++ b/Source/core/layout/LayoutGrid.h
|
| @@ -154,7 +154,12 @@ private:
|
| LayoutUnit gridAreaBreadthForChild(const LayoutBox& child, GridTrackSizingDirection, const Vector<GridTrack>&) const;
|
|
|
| virtual void paintChildren(const PaintInfo&, const LayoutPoint&) override;
|
| - bool allowedToStretchLogicalHeightForChild(const LayoutBox& child) const;
|
| + bool hasAutoSizeInColumnAxisForChild(const LayoutBox&) const;
|
| + bool hasAutoSizeInRowAxisForChild(const LayoutBox&) const;
|
| + bool allowedToStretchChildAlongColumnAxis(const LayoutBox&) const;
|
| + bool allowedToStretchChildAlongRowAxis(const LayoutBox&) const;
|
| + bool canShrinkToFitInRowAxisForChild(const LayoutBox&) const;
|
| + bool hasAutoMinSizeInRowAxis(const LayoutBox&) const;
|
| bool needToStretchChildLogicalHeight(const LayoutBox&) const;
|
| LayoutUnit childIntrinsicHeight(const LayoutBox&) const;
|
| LayoutUnit childIntrinsicWidth(const LayoutBox&) const;
|
| @@ -162,7 +167,7 @@ private:
|
| LayoutUnit marginLogicalHeightForChild(const LayoutBox&) const;
|
| LayoutUnit computeMarginLogicalHeightForChild(const LayoutBox&) const;
|
| LayoutUnit availableAlignmentSpaceForChildBeforeStretching(LayoutUnit gridAreaBreadthForChild, const LayoutBox&) const;
|
| - void applyStretchAlignmentToChildIfNeeded(LayoutBox&, LayoutUnit gridAreaBreadthForChild);
|
| + void applyStretchAlignmentToChildIfNeeded(LayoutBox&);
|
|
|
| #if ENABLE(ASSERT)
|
| bool tracksAreWiderThanMinTrackBreadth(GridTrackSizingDirection, const Vector<GridTrack>&);
|
|
|