| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "core/layout/ng/ng_physical_box_fragment.h" | 5 #include "core/layout/ng/ng_physical_box_fragment.h" |
| 6 | 6 |
| 7 namespace blink { | 7 namespace blink { |
| 8 | 8 |
| 9 NGPhysicalBoxFragment::NGPhysicalBoxFragment( | 9 NGPhysicalBoxFragment::NGPhysicalBoxFragment( |
| 10 NGPhysicalSize size, | 10 NGPhysicalSize size, |
| 11 NGPhysicalSize overflow, | 11 NGPhysicalSize overflow, |
| 12 HeapVector<Member<const NGPhysicalFragment>>& children, | 12 HeapVector<Member<const NGPhysicalFragment>>& children, |
| 13 HeapLinkedHashSet<WeakMember<NGBlockNode>>& out_of_flow_descendants, | 13 HeapLinkedHashSet<WeakMember<NGBlockNode>>& out_of_flow_descendants, |
| 14 Vector<NGStaticPosition>& out_of_flow_positions, | 14 Vector<NGStaticPosition>& out_of_flow_positions, |
| 15 NGMarginStrut margin_strut) | 15 NGMarginStrut margin_strut, |
| 16 NGBreakToken* break_token) |
| 16 : NGPhysicalFragment(size, | 17 : NGPhysicalFragment(size, |
| 17 overflow, | 18 overflow, |
| 18 kFragmentBox, | 19 kFragmentBox, |
| 19 out_of_flow_descendants, | 20 out_of_flow_descendants, |
| 20 out_of_flow_positions), | 21 out_of_flow_positions, |
| 22 break_token), |
| 21 margin_strut_(margin_strut) { | 23 margin_strut_(margin_strut) { |
| 22 children_.swap(children); | 24 children_.swap(children); |
| 23 } | 25 } |
| 24 | 26 |
| 25 DEFINE_TRACE_AFTER_DISPATCH(NGPhysicalBoxFragment) { | 27 DEFINE_TRACE_AFTER_DISPATCH(NGPhysicalBoxFragment) { |
| 26 visitor->trace(children_); | 28 visitor->trace(children_); |
| 27 NGPhysicalFragment::traceAfterDispatch(visitor); | 29 NGPhysicalFragment::traceAfterDispatch(visitor); |
| 28 } | 30 } |
| 29 | 31 |
| 30 } // namespace blink | 32 } // namespace blink |
| OLD | NEW |