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

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

Issue 2714803002: [LayoutNG] Allow block-flow layout to be fragmented using new approach. (Closed)
Patch Set: rebase. 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_constraint_space.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc b/third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc
index 4cc561fde043a492d7e96d8f5a81a61dc6331017..5a1abf690a32b83b879a9620ae4030864001183c 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc
@@ -25,6 +25,7 @@ NGConstraintSpace::NGConstraintSpace(
bool is_block_direction_triggers_scrollbar,
NGFragmentationType block_direction_fragmentation_type,
bool is_new_fc,
+ bool is_anonymous,
const NGMarginStrut& margin_strut,
const NGLogicalOffset& bfc_offset,
const std::shared_ptr<NGExclusions>& exclusions,
@@ -42,6 +43,7 @@ NGConstraintSpace::NGConstraintSpace(
is_block_direction_triggers_scrollbar),
block_direction_fragmentation_type_(block_direction_fragmentation_type),
is_new_fc_(is_new_fc),
+ is_anonymous_(is_anonymous),
writing_mode_(writing_mode),
direction_(static_cast<unsigned>(direction)),
margin_strut_(margin_strut),

Powered by Google App Engine
This is Rietveld 408576698