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

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

Issue 2272313004: [layoutng] Rename struct members to match style guide (Closed)
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_block_layout_algorithm_test.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc b/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc
index 07d69b67b8a712ab7c539116dc6b2e900006764e..9327201da56b3c4af311799f94cb11112ad4f5b3 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc
@@ -26,8 +26,8 @@ TEST_F(NGBlockLayoutAlgorithmTest, FixedSize) {
style_->setHeight(Length(40, Fixed));
NGLogicalSize container_size;
- container_size.inlineSize = LayoutUnit(100);
- container_size.blockSize = NGSizeIndefinite;
+ container_size.inline_size = LayoutUnit(100);
+ container_size.block_size = NGSizeIndefinite;
NGConstraintSpace space(container_size);
NGBlockLayoutAlgorithm algorithm(style_, NGBoxIterator(NGBox()));

Powered by Google App Engine
This is Rietveld 408576698