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

Unified Diff: third_party/WebKit/Source/core/layout/ng/inline/ng_inline_layout_algorithm.h

Issue 2948743002: [LayoutNG] Let NGLineBreaker pass line box location to NGInlineLayoutAlgorithm (Closed)
Patch Set: ikilpatrick review Created 3 years, 6 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/inline/ng_inline_layout_algorithm.h
diff --git a/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_layout_algorithm.h b/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_layout_algorithm.h
index fb497859c4bdabab3e4eb55d5481b522efdbc134..805f944f1f7bc6af14c4df7e62aa5da1c61ebc87 100644
--- a/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_layout_algorithm.h
+++ b/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_layout_algorithm.h
@@ -50,8 +50,6 @@ class CORE_EXPORT NGInlineLayoutAlgorithm final
private:
bool IsHorizontalWritingMode() const { return is_horizontal_writing_mode_; }
- LayoutUnit LogicalLeftOffset(const NGLayoutOpportunity&) const;
-
void BidiReorder(NGInlineItemResults*);
bool PlaceItems(NGLineInfo*, RefPtr<NGInlineBreakToken>);
@@ -69,8 +67,6 @@ class CORE_EXPORT NGInlineLayoutAlgorithm final
LayoutUnit ComputeContentSize(const NGLineInfo&, LayoutUnit line_bottom);
- NGLayoutOpportunity FindLayoutOpportunityForLine();
-
NGInlineLayoutStateStack box_states_;
LayoutUnit content_size_;
LayoutUnit max_inline_size_;

Powered by Google App Engine
This is Rietveld 408576698