| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 NGLengthUtils_h | 5 #ifndef NGLengthUtils_h |
| 6 #define NGLengthUtils_h | 6 #define NGLengthUtils_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 | 9 |
| 10 namespace blink { | 10 namespace blink { |
| 11 class ComputedStyle; | 11 class ComputedStyle; |
| 12 class LayoutUnit; | 12 class LayoutUnit; |
| 13 class Length; | 13 class Length; |
| 14 class NGConstraintSpace; | 14 class NGConstraintSpace; |
| 15 struct NGBoxMargins; | 15 struct NGBoxMargins; |
| 16 | 16 |
| 17 enum class LengthResolveType { MinSize, MaxSize, ContentSize, MarginSize }; | 17 enum class LengthResolveType { MinSize, MaxSize, ContentSize, MarginSize }; |
| 18 | 18 |
| 19 #define NGSizeIndefinite LayoutUnit(-1) |
| 20 |
| 19 // Convert an inline-axis length to a layout unit using the given constraint | 21 // Convert an inline-axis length to a layout unit using the given constraint |
| 20 // space. | 22 // space. |
| 21 CORE_EXPORT LayoutUnit resolveInlineLength(const NGConstraintSpace&, | 23 CORE_EXPORT LayoutUnit resolveInlineLength(const NGConstraintSpace&, |
| 22 const Length&, | 24 const Length&, |
| 23 LengthResolveType); | 25 LengthResolveType); |
| 24 | 26 |
| 25 // Convert a block-axis length to a layout unit using the given constraint | 27 // Convert a block-axis length to a layout unit using the given constraint |
| 26 // space and content size. | 28 // space and content size. |
| 27 CORE_EXPORT LayoutUnit resolveBlockLength(const NGConstraintSpace&, | 29 CORE_EXPORT LayoutUnit resolveBlockLength(const NGConstraintSpace&, |
| 28 const Length&, | 30 const Length&, |
| (...skipping 12 matching lines...) Expand all Loading... |
| 41 CORE_EXPORT LayoutUnit computeBlockSizeForFragment(const NGConstraintSpace&, | 43 CORE_EXPORT LayoutUnit computeBlockSizeForFragment(const NGConstraintSpace&, |
| 42 const ComputedStyle&, | 44 const ComputedStyle&, |
| 43 LayoutUnit contentSize); | 45 LayoutUnit contentSize); |
| 44 | 46 |
| 45 CORE_EXPORT NGBoxMargins computeMargins(const NGConstraintSpace&, | 47 CORE_EXPORT NGBoxMargins computeMargins(const NGConstraintSpace&, |
| 46 const ComputedStyle&); | 48 const ComputedStyle&); |
| 47 | 49 |
| 48 } // namespace blink | 50 } // namespace blink |
| 49 | 51 |
| 50 #endif // NGLengthUtils_h | 52 #endif // NGLengthUtils_h |
| OLD | NEW |