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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_constraint_space.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_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 366a40c6ef3867f5a28eaaf60872e041368fc9ce..f3921612ec2290e0acd8d477172985e08c7a931f 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
@@ -16,6 +16,7 @@ NGConstraintSpace::NGConstraintSpace(
TextDirection direction,
NGLogicalSize available_size,
NGLogicalSize percentage_resolution_size,
+ LayoutUnit fragmentainer_space_available,
bool is_fixed_size_inline,
bool is_fixed_size_block,
bool is_shrink_to_fit,
@@ -26,6 +27,7 @@ NGConstraintSpace::NGConstraintSpace(
const std::shared_ptr<NGExclusions>& exclusions_)
: available_size_(available_size),
percentage_resolution_size_(percentage_resolution_size),
+ fragmentainer_space_available_(fragmentainer_space_available),
is_fixed_size_inline_(is_fixed_size_inline),
is_fixed_size_block_(is_fixed_size_block),
is_shrink_to_fit_(is_shrink_to_fit),

Powered by Google App Engine
This is Rietveld 408576698