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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_text_layout_algorithm.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_text_layout_algorithm.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_text_layout_algorithm.cc b/third_party/WebKit/Source/core/layout/ng/ng_text_layout_algorithm.cc
index 55509b48f35174798fb89dd707058cceee22035d..9d58176c1a6d2bb45b6e86824dcaa53dc54a4816 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_text_layout_algorithm.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_text_layout_algorithm.cc
@@ -26,12 +26,9 @@ NGTextLayoutAlgorithm::NGTextLayoutAlgorithm(
DCHECK(inline_box_);
}
-NGLayoutStatus NGTextLayoutAlgorithm::Layout(NGPhysicalFragment*,
- NGPhysicalFragment** fragment_out,
- NGLayoutAlgorithm**) {
+NGPhysicalFragment* NGTextLayoutAlgorithm::Layout() {
ASSERT_NOT_REACHED();
- *fragment_out = nullptr;
- return kNewFragment;
+ return nullptr;
}
bool NGTextLayoutAlgorithm::LayoutInline(NGLineBuilder* line_builder) {

Powered by Google App Engine
This is Rietveld 408576698