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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_constraint_space.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_constraint_space.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc b/third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc
index f779374330cb556453abff10dbd803a747179ea3..4d7d45f19b9c965ac117e8589c7900a85fb206b5 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc
@@ -41,8 +41,8 @@ NGConstraintSpace NGConstraintSpace::fromLayoutObject(const LayoutBox& child) {
fixedBlock = true;
}
NGLogicalSize size;
- size.inlineSize = container_logical_width;
- size.blockSize = container_logical_height;
+ size.inline_size = container_logical_width;
+ size.block_size = container_logical_height;
NGConstraintSpace space(size);
space.setOverflowTriggersScrollbar(
child.styleRef().overflowInlineDirection() == OverflowAuto,
« no previous file with comments | « third_party/WebKit/Source/core/layout/ng/ng_box.cc ('k') | third_party/WebKit/Source/core/layout/ng/ng_fragment_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698