| 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 8a5582632ab5bdc3bf8d3a2ae18e179776f53bba..73417920b6c5809232ce234625d147015d4ae7a3 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/ng_units.h
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_units.h
|
| @@ -12,6 +12,10 @@ namespace blink {
|
| class LayoutUnit;
|
|
|
| struct NGLogicalSize {
|
| + NGLogicalSize() {}
|
| + NGLogicalSize(LayoutUnit inlineSize, LayoutUnit blockSize)
|
| + : inlineSize(inlineSize), blockSize(blockSize) {}
|
| +
|
| LayoutUnit inlineSize;
|
| LayoutUnit blockSize;
|
| };
|
|
|