Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_physical_box_fragment.cc

Issue 2632523002: [LayoutNG] Initial support for multicol, introducing NGBlockBreakToken. (Closed)
Patch Set: Add TODO. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}

Powered by Google App Engine
This is Rietveld 408576698