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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_physical_text_fragment.h

Issue 2693193002: [LayoutNG] A different approach to multi-col. (Closed)
Patch Set: Created 3 years, 10 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_text_fragment.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_physical_text_fragment.h b/third_party/WebKit/Source/core/layout/ng/ng_physical_text_fragment.h
index bb33b0f1acc920d40815f6d07966e9a5bf4dc27e..274eb4eac615df0004744127860567e298ced0b2 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_physical_text_fragment.h
+++ b/third_party/WebKit/Source/core/layout/ng/ng_physical_text_fragment.h
@@ -28,7 +28,8 @@ class CORE_EXPORT NGPhysicalTextFragment final : public NGPhysicalFragment {
out_of_flow_descendants,
Vector<NGStaticPosition> out_of_flow_positions,
Vector<Persistent<NGFloatingObject>>& unpositioned_floats,
- Vector<Persistent<NGFloatingObject>>& positioned_floats)
+ Vector<Persistent<NGFloatingObject>>& positioned_floats,
+ NGBreakToken* break_token)
: NGPhysicalFragment(layout_object,
size,
overflow,
@@ -36,7 +37,8 @@ class CORE_EXPORT NGPhysicalTextFragment final : public NGPhysicalFragment {
out_of_flow_descendants,
out_of_flow_positions,
unpositioned_floats,
- positioned_floats),
+ positioned_floats,
+ break_token),
node_(node),
item_index_(item_index),
start_offset_(start_offset),

Powered by Google App Engine
This is Rietveld 408576698