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

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

Issue 2910133002: [LayoutNG] Handle empty inlines and border edges (Closed)
Patch Set: Rebase 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/ng_fragment_builder.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_fragment_builder.h b/third_party/WebKit/Source/core/layout/ng/ng_fragment_builder.h
index 27a8896439a5bd62f288edf01c7b110132ee214c..d54b264bd3b7b92f76515c01c687f35c110c3517 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_fragment_builder.h
+++ b/third_party/WebKit/Source/core/layout/ng/ng_fragment_builder.h
@@ -129,7 +129,7 @@ class CORE_EXPORT NGFragmentBuilder final {
bool DidBreak() const { return did_break_; }
- NGFragmentBuilder& SetBorderEdges(NGBorderEdges::Logical border_edges) {
+ NGFragmentBuilder& SetBorderEdges(NGBorderEdges border_edges) {
border_edges_ = border_edges;
return *this;
}
@@ -187,7 +187,7 @@ class CORE_EXPORT NGFragmentBuilder final {
WTF::Optional<NGLogicalOffset> bfc_offset_;
NGMarginStrut end_margin_strut_;
- NGBorderEdges::Logical border_edges_;
+ NGBorderEdges border_edges_;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698