| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef GridTrackSizingAlgorithm_h | 5 #ifndef GridTrackSizingAlgorithm_h |
| 6 #define GridTrackSizingAlgorithm_h | 6 #define GridTrackSizingAlgorithm_h |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include "core/layout/LayoutBox.h" | 9 #include "core/layout/LayoutBox.h" |
| 10 #include "core/style/GridPositionsResolver.h" | 10 #include "core/style/GridPositionsResolver.h" |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 LayoutBox& child, | 292 LayoutBox& child, |
| 293 GridTrackSizingDirection, | 293 GridTrackSizingDirection, |
| 294 LayoutUnit size); | 294 LayoutUnit size); |
| 295 static GridTrackSizingDirection FlowAwareDirectionForChild( | 295 static GridTrackSizingDirection FlowAwareDirectionForChild( |
| 296 const LayoutGrid*, | 296 const LayoutGrid*, |
| 297 const LayoutBox& child, | 297 const LayoutBox& child, |
| 298 GridTrackSizingDirection); | 298 GridTrackSizingDirection); |
| 299 | 299 |
| 300 GridTrackSizingAlgorithm& algorithm_; | 300 GridTrackSizingAlgorithm& algorithm_; |
| 301 }; | 301 }; |
| 302 } | 302 } // namespace blink |
| 303 | 303 |
| 304 #endif // GridTrackSizingAlgorithm_h | 304 #endif // GridTrackSizingAlgorithm_h |
| OLD | NEW |