| 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 7b466188b3a8aafbbe10bfc134b88ce74af0b8c2..c691ad23eefb67ee4706d541621281da9ff4b1ea 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/ng_units.h
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_units.h
|
| @@ -26,6 +26,10 @@ struct NGLogicalOffset {
|
| };
|
|
|
| struct NGPhysicalSize {
|
| + NGPhysicalSize() {}
|
| + NGPhysicalSize(LayoutUnit width, LayoutUnit height)
|
| + : width(width), height(height) {}
|
| +
|
| LayoutUnit width;
|
| LayoutUnit height;
|
| };
|
|
|