| Index: third_party/WebKit/Source/core/layout/ng/ng_physical_box_fragment.cc
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_physical_box_fragment.cc b/third_party/WebKit/Source/core/layout/ng/ng_physical_box_fragment.cc
|
| index 5fd19a96f3ec1b411e1d6f4824071e70c0d6693d..8867167ce97a5d942a306269fa97d544c18f582c 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/ng_physical_box_fragment.cc
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_physical_box_fragment.cc
|
| @@ -13,12 +13,16 @@ NGPhysicalBoxFragment::NGPhysicalBoxFragment(
|
| HeapLinkedHashSet<WeakMember<NGBlockNode>>& out_of_flow_descendants,
|
| Vector<NGStaticPosition>& out_of_flow_positions,
|
| NGMarginStrut margin_strut,
|
| + HeapVector<Member<NGFloatingObject>>& unpositioned_floats,
|
| + HeapVector<Member<NGFloatingObject>>& positioned_floats,
|
| NGBreakToken* break_token)
|
| : NGPhysicalFragment(size,
|
| overflow,
|
| kFragmentBox,
|
| out_of_flow_descendants,
|
| out_of_flow_positions,
|
| + unpositioned_floats,
|
| + positioned_floats,
|
| break_token),
|
| margin_strut_(margin_strut) {
|
| children_.swap(children);
|
|
|