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

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

Issue 2462413002: Reland of Use NGLogicalRect instead of NGExclusion for exclusions. (Closed)
Patch Set: Created 4 years, 1 month 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_layout_opportunity_tree_node.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_layout_opportunity_tree_node.cc b/third_party/WebKit/Source/core/layout/ng/ng_layout_opportunity_tree_node.cc
index 8762a06fe65defffd9209f80bcf9dcaccd50444c..c7a1c6ace44aeb06728d87f2aade8c229dfe9bac 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_layout_opportunity_tree_node.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_layout_opportunity_tree_node.cc
@@ -11,7 +11,7 @@
NGLayoutOpportunityTreeNode::NGLayoutOpportunityTreeNode(
const NGLogicalRect opportunity)
- : opportunity(opportunity) {
+ : opportunity(opportunity), exclusion(nullptr) {
exclusion_edge.start = opportunity.offset.inline_offset;
exclusion_edge.end = exclusion_edge.start + opportunity.size.inline_size;
}
@@ -19,13 +19,14 @@
NGLayoutOpportunityTreeNode::NGLayoutOpportunityTreeNode(
const NGLogicalRect opportunity,
NGEdge exclusion_edge)
- : opportunity(opportunity), exclusion_edge(exclusion_edge) {}
+ : opportunity(opportunity),
+ exclusion_edge(exclusion_edge),
+ exclusion(nullptr) {}
DEFINE_TRACE(NGLayoutOpportunityTreeNode) {
visitor->trace(left);
visitor->trace(bottom);
visitor->trace(right);
- visitor->trace(exclusion);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698