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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_box.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_box.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_box.cc b/third_party/WebKit/Source/core/layout/ng/ng_box.cc
index 1afd50b7171fdf702efeda1c244936d69375ed54..65a26654392ee26e54d22e1f6ba6d8fcf159f80b 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_box.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_box.cc
@@ -32,9 +32,9 @@ NGFragment* NGBox::layout(const NGConstraintSpace& constraintSpace) {
// TODO(layout-ng): If fixedSize is true, set the override width/height too
NGLogicalSize containerSize = constraintSpace.ContainerSize();
m_layoutBox->setOverrideContainingBlockContentLogicalWidth(
- containerSize.inlineSize);
+ containerSize.inline_size);
m_layoutBox->setOverrideContainingBlockContentLogicalHeight(
- containerSize.blockSize);
+ containerSize.block_size);
if (m_layoutBox->isLayoutNGBlockFlow() && m_layoutBox->needsLayout()) {
toLayoutNGBlockFlow(m_layoutBox)->LayoutBlockFlow::layoutBlock(true);
} else {

Powered by Google App Engine
This is Rietveld 408576698