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 f5e2c4169d8f24b50a07fe9b362bcf1baa3f8351..5fd19a96f3ec1b411e1d6f4824071e70c0d6693d 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 |
@@ -12,12 +12,14 @@ NGPhysicalBoxFragment::NGPhysicalBoxFragment( |
HeapVector<Member<const NGPhysicalFragment>>& children, |
HeapLinkedHashSet<WeakMember<NGBlockNode>>& out_of_flow_descendants, |
Vector<NGStaticPosition>& out_of_flow_positions, |
- NGMarginStrut margin_strut) |
+ NGMarginStrut margin_strut, |
+ NGBreakToken* break_token) |
: NGPhysicalFragment(size, |
overflow, |
kFragmentBox, |
out_of_flow_descendants, |
- out_of_flow_positions), |
+ out_of_flow_positions, |
+ break_token), |
margin_strut_(margin_strut) { |
children_.swap(children); |
} |