| Index: third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.cc
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.cc b/third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.cc
|
| index dbb82c2d9e360550af535a1014f66bf4a5962612..4172fe64f40f632c65c262ded322899f1cbe0135 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.cc
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.cc
|
| @@ -9,6 +9,16 @@
|
|
|
| namespace blink {
|
|
|
| +NGPhysicalConstraintSpace::NGPhysicalConstraintSpace(
|
| + NGPhysicalSize container_size)
|
| + : container_size_(container_size),
|
| + fixed_width_(0),
|
| + fixed_height_(0),
|
| + width_direction_triggers_scrollbar_(0),
|
| + height_direction_triggers_scrollbar_(0),
|
| + width_direction_fragmentation_type_(FragmentNone),
|
| + height_direction_fragmentation_type_(FragmentNone) {}
|
| +
|
| NGPhysicalConstraintSpace::NGPhysicalConstraintSpace()
|
| : fixed_width_(0),
|
| fixed_height_(0),
|
|
|