| 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 2847078d6ca00f3b8cadac00ce3ff950d1126e8d..40e9a4c6ea5458a38abcb66ef34b98d379ec1e89 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutGrid.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutGrid.h
|
| @@ -220,6 +220,8 @@ private:
|
| bool isOrthogonalChild(const LayoutBox&) const;
|
| GridTrackSizingDirection flowAwareDirectionForChild(const LayoutBox&, GridTrackSizingDirection) const;
|
|
|
| + bool cachedHasDefiniteLogicalHeight() const;
|
| +
|
| typedef Vector<Vector<GridCell>> GridRepresentation;
|
| GridRepresentation m_grid;
|
| bool m_gridIsDirty;
|
| @@ -245,6 +247,8 @@ private:
|
|
|
| std::unique_ptr<OrderedTrackIndexSet> m_autoRepeatEmptyColumns { nullptr };
|
| std::unique_ptr<OrderedTrackIndexSet> m_autoRepeatEmptyRows { nullptr };
|
| +
|
| + Optional<bool> m_hasDefiniteLogicalHeight;
|
| };
|
|
|
| DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutGrid, isLayoutGrid());
|
|
|