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

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

Issue 2264273003: [layoutng] LayoutOpportunities() only needs a bool, not an enum (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « third_party/WebKit/Source/core/layout/ng/ng_constraint_space.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 2844b87766f2dc06a69d86046fa77eed3f7bb17a..1d024121b113a8a88dccf5697012c69c0bb4f095 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
@@ -71,9 +71,10 @@ DoublyLinkedList<const NGExclusion> NGConstraintSpace::exclusions(
}
NGLayoutOpportunityIterator NGConstraintSpace::layoutOpportunities(
- unsigned clear, NGExclusionFlowType avoid) const {
+ unsigned clear,
+ bool for_inline_or_bfc) const {
// TODO(eae): Implement.
- NGLayoutOpportunityIterator iterator(this, clear, avoid);
+ NGLayoutOpportunityIterator iterator(this, clear, for_inline_or_bfc);
return iterator;
}
« no previous file with comments | « third_party/WebKit/Source/core/layout/ng/ng_constraint_space.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698