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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_length_utils_test.cc

Issue 2525033002: Deprecate NGPhysicalConstraintSpace (Closed)
Patch Set: Created 4 years, 1 month 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_test.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_length_utils_test.cc b/third_party/WebKit/Source/core/layout/ng/ng_length_utils_test.cc
index 4052d7b783c97cfd0c2e9ae4dc7d06ff6e08d169..c8f928c47c6cc8aa60a91b308391a70921683ca5 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_length_utils_test.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_length_utils_test.cc
@@ -28,17 +28,14 @@ class NGLengthUtilsTest : public ::testing::Test {
int block_size,
bool fixed_inline = false,
bool fixed_block = false) {
- NGConstraintSpaceBuilder builder(HorizontalTopBottom);
- builder
+ return NGConstraintSpaceBuilder(HorizontalTopBottom)
.SetAvailableSize(
NGLogicalSize(LayoutUnit(inline_size), LayoutUnit(block_size)))
.SetPercentageResolutionSize(
NGLogicalSize(LayoutUnit(inline_size), LayoutUnit(block_size)))
.SetIsFixedSizeInline(fixed_inline)
- .SetIsFixedSizeBlock(fixed_block);
-
- return new NGConstraintSpace(HorizontalTopBottom, LTR,
- builder.ToConstraintSpace());
+ .SetIsFixedSizeBlock(fixed_block)
+ .ToConstraintSpace();
}
LayoutUnit ResolveInlineLength(

Powered by Google App Engine
This is Rietveld 408576698