| 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 | 16 |
| 16 enum class LengthResolveType { MinSize, MaxSize, ContentSize }; | 17 enum class LengthResolveType { MinSize, MaxSize, ContentSize, MarginSize }; |
| 17 | 18 |
| 18 // Convert an inline-axis length to a layout unit using the given constraint | 19 // Convert an inline-axis length to a layout unit using the given constraint |
| 19 // space. | 20 // space. |
| 20 CORE_EXPORT LayoutUnit resolveInlineLength(const NGConstraintSpace&, | 21 CORE_EXPORT LayoutUnit resolveInlineLength(const NGConstraintSpace&, |
| 21 const Length&, | 22 const Length&, |
| 22 LengthResolveType); | 23 LengthResolveType); |
| 23 | 24 |
| 24 // Convert a block-axis length to a layout unit using the given constraint | 25 // Convert a block-axis length to a layout unit using the given constraint |
| 25 // space and content size. | 26 // space and content size. |
| 26 CORE_EXPORT LayoutUnit resolveBlockLength(const NGConstraintSpace&, | 27 CORE_EXPORT LayoutUnit resolveBlockLength(const NGConstraintSpace&, |
| 27 const Length&, | 28 const Length&, |
| 28 LayoutUnit contentSize, | 29 LayoutUnit contentSize, |
| 29 LengthResolveType); | 30 LengthResolveType); |
| 30 | 31 |
| 31 // Resolves the given length to a layout unit, constraining it by the min | 32 // Resolves the given length to a layout unit, constraining it by the min |
| 32 // logical width and max logical width properties from the ComputedStyle | 33 // logical width and max logical width properties from the ComputedStyle |
| 33 // object. | 34 // object. |
| 34 CORE_EXPORT LayoutUnit computeInlineSizeForFragment(const NGConstraintSpace&, | 35 CORE_EXPORT LayoutUnit computeInlineSizeForFragment(const NGConstraintSpace&, |
| 35 const ComputedStyle&); | 36 const ComputedStyle&); |
| 36 | 37 |
| 37 // Resolves the given length to a layout unit, constraining it by the min | 38 // Resolves the given length to a layout unit, constraining it by the min |
| 38 // logical height and max logical height properties from the ComputedStyle | 39 // logical height and max logical height properties from the ComputedStyle |
| 39 // object. | 40 // object. |
| 40 CORE_EXPORT LayoutUnit computeBlockSizeForFragment(const NGConstraintSpace&, | 41 CORE_EXPORT LayoutUnit computeBlockSizeForFragment(const NGConstraintSpace&, |
| 41 const ComputedStyle& style, | 42 const ComputedStyle&, |
| 42 LayoutUnit contentSize); | 43 LayoutUnit contentSize); |
| 43 | 44 |
| 45 CORE_EXPORT NGBoxMargins computeMargins(const NGConstraintSpace&, |
| 46 const ComputedStyle&); |
| 47 |
| 44 } // namespace blink | 48 } // namespace blink |
| 45 | 49 |
| 46 #endif // NGLengthUtils_h | 50 #endif // NGLengthUtils_h |
| OLD | NEW |