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

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

Issue 2954953002: [LayoutNG] Abort a layout once the BFC offset is resolved. (Closed)
Patch Set: rebase. Created 3 years, 5 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_line_breaker.h
diff --git a/third_party/WebKit/Source/core/layout/ng/inline/ng_line_breaker.h b/third_party/WebKit/Source/core/layout/ng/inline/ng_line_breaker.h
index 421b5de1ac354d8b1d7cff134618b56691045f7b..cb3de054fa9affe5b582e4d989c591241baa6819 100644
--- a/third_party/WebKit/Source/core/layout/ng/inline/ng_line_breaker.h
+++ b/third_party/WebKit/Source/core/layout/ng/inline/ng_line_breaker.h
@@ -32,6 +32,7 @@ class CORE_EXPORT NGLineBreaker {
NGLineBreaker(NGInlineNode,
NGConstraintSpace*,
NGFragmentBuilder*,
+ Vector<RefPtr<NGUnpositionedFloat>>*,
const NGInlineBreakToken* = nullptr);
~NGLineBreaker() {}
STACK_ALLOCATED();
@@ -96,6 +97,7 @@ class CORE_EXPORT NGLineBreaker {
NGInlineNode node_;
NGConstraintSpace* constraint_space_;
NGFragmentBuilder* container_builder_;
+ Vector<RefPtr<NGUnpositionedFloat>>* unpositioned_floats_;
const AtomicString locale_;
unsigned item_index_;
unsigned offset_;

Powered by Google App Engine
This is Rietveld 408576698