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

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

Issue 2649583002: [LayoutNG] Remove the ng_layout_coordinator and temporary LayoutSync method. (Closed)
Patch Set: rebase v2 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_inline_node.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_inline_node.cc b/third_party/WebKit/Source/core/layout/ng/ng_inline_node.cc
index 5186ccdded05c39d43198eecc8596e5b22910bf3..df065d12aca517d43f671c690ca0d83b52f6a637 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_inline_node.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_inline_node.cc
@@ -215,11 +215,9 @@ void NGInlineNode::ShapeText() {
}
}
-bool NGInlineNode::Layout(NGConstraintSpace* constraint_space,
- NGFragment** out) {
+NGPhysicalFragment* NGInlineNode::Layout(NGConstraintSpace*) {
ASSERT_NOT_REACHED();
- *out = nullptr;
- return true;
+ return nullptr;
}
bool NGInlineNode::LayoutInline(NGConstraintSpace* constraint_space,

Powered by Google App Engine
This is Rietveld 408576698