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

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: ./ 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 6d8c2256d2b6ff997b51bf3d258b41a6ef9f950e..ad58dc445c514eda6772e6e911c92a46ae366bae 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();
@@ -94,6 +95,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