Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_length_utils.h

Issue 2243513003: [LayoutNG] Add tests for ng_length_utils. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: .. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/layout/ng/ng_length_utils.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_length_utils.h b/third_party/WebKit/Source/core/layout/ng/ng_length_utils.h
index c5956db2ae1db8b6b73c30ac5f8de5e9bbd14dbc..a42f1dae0656b6ccf159c8a52784dbffc78d4087 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_length_utils.h
+++ b/third_party/WebKit/Source/core/layout/ng/ng_length_utils.h
@@ -17,16 +17,16 @@ enum class LengthResolveType { MinSize, MaxSize, ContentSize };
// Convert an inline-axis length to a layout unit using the given constraint
// space.
-CORE_EXPORT LayoutUnit resolveInlineLength(LengthResolveType,
+CORE_EXPORT LayoutUnit resolveInlineLength(const NGConstraintSpace&,
const Length&,
- const NGConstraintSpace&);
+ LengthResolveType);
// Convert a block-axis length to a layout unit using the given constraint
-// space.
-CORE_EXPORT LayoutUnit resolveBlockLength(LengthResolveType,
+// space and content size.
+CORE_EXPORT LayoutUnit resolveBlockLength(const NGConstraintSpace&,
const Length&,
- const NGConstraintSpace&,
- LayoutUnit contentContribution);
+ LayoutUnit contentSize,
+ LengthResolveType);
// Resolves the given length to a layout unit, constraining it by the min
// logical width and max logical width properties from the ComputedStyle
@@ -37,10 +37,9 @@ CORE_EXPORT LayoutUnit computeInlineSizeForFragment(const NGConstraintSpace&,
// Resolves the given length to a layout unit, constraining it by the min
// logical height and max logical height properties from the ComputedStyle
// object.
-CORE_EXPORT LayoutUnit
-computeBlockSizeForFragment(const NGConstraintSpace&,
- const ComputedStyle& style,
- LayoutUnit contentContribution);
+CORE_EXPORT LayoutUnit computeBlockSizeForFragment(const NGConstraintSpace&,
+ const ComputedStyle& style,
+ LayoutUnit contentSize);
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/layout/ng/ng_length_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698