Chromium Code Reviews| 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 2b8a16c784d9e96496214e0343ab94e17425bc52..14a91415faa345d7a970eed98a65f0dea00812c6 100644 |
| --- a/third_party/WebKit/Source/core/layout/LayoutGrid.h |
| +++ b/third_party/WebKit/Source/core/layout/LayoutGrid.h |
| @@ -186,7 +186,8 @@ private: |
| #endif |
| size_t gridItemSpan(const LayoutBox&, GridTrackSizingDirection); |
| - bool spanningItemCrossesFlexibleSizedTracks(const GridSpan&, GridTrackSizingDirection) const; |
| + enum SpanMode { FlexibleOnly, ContentSizedAndFlexible }; |
|
Manuel Rego
2016/03/14 14:38:09
Maybe call it SpanTracksMode.
Dunno really, but tr
svillar
2016/03/17 13:33:54
I wasn't able to find a good name. I can change it
|
| + bool itemSpansContentSizedOrFlexibleSizedTracks(const GridSpan&, GridTrackSizingDirection, SpanMode) const; |
| size_t gridColumnCount() const |
| { |