| Index: third_party/WebKit/Source/core/layout/ng/ng_units.h
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_units.h b/third_party/WebKit/Source/core/layout/ng/ng_units.h
|
| index 73417920b6c5809232ce234625d147015d4ae7a3..2d8ad7e008801f837ca871fdb9ebdb9236f88590 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/ng_units.h
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_units.h
|
| @@ -13,16 +13,16 @@ class LayoutUnit;
|
|
|
| struct NGLogicalSize {
|
| NGLogicalSize() {}
|
| - NGLogicalSize(LayoutUnit inlineSize, LayoutUnit blockSize)
|
| - : inlineSize(inlineSize), blockSize(blockSize) {}
|
| + NGLogicalSize(LayoutUnit inline_size, LayoutUnit block_size)
|
| + : inline_size(inline_size), block_size(block_size) {}
|
|
|
| - LayoutUnit inlineSize;
|
| - LayoutUnit blockSize;
|
| + LayoutUnit inline_size;
|
| + LayoutUnit block_size;
|
| };
|
|
|
| struct NGLogicalOffset {
|
| - LayoutUnit inlineOffset;
|
| - LayoutUnit blockOffset;
|
| + LayoutUnit inline_offset;
|
| + LayoutUnit block_offset;
|
| };
|
|
|
| struct NGPhysicalSize {
|
|
|