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

Side by Side Diff: third_party/WebKit/Source/core/layout/ng/inline/ng_inline_layout_algorithm.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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NGInlineLayoutAlgorithm_h 5 #ifndef NGInlineLayoutAlgorithm_h
6 #define NGInlineLayoutAlgorithm_h 6 #define NGInlineLayoutAlgorithm_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/layout/ng/geometry/ng_logical_offset.h" 9 #include "core/layout/ng/geometry/ng_logical_offset.h"
10 #include "core/layout/ng/inline/ng_inline_box_state.h" 10 #include "core/layout/ng/inline/ng_inline_box_state.h"
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 LayoutUnit content_size_; 74 LayoutUnit content_size_;
75 LayoutUnit max_inline_size_; 75 LayoutUnit max_inline_size_;
76 FontBaseline baseline_type_ = FontBaseline::kAlphabeticBaseline; 76 FontBaseline baseline_type_ = FontBaseline::kAlphabeticBaseline;
77 77
78 NGLogicalOffset bfc_offset_; 78 NGLogicalOffset bfc_offset_;
79 NGLogicalRect current_opportunity_; 79 NGLogicalRect current_opportunity_;
80 80
81 unsigned is_horizontal_writing_mode_ : 1; 81 unsigned is_horizontal_writing_mode_ : 1;
82 82
83 NGConstraintSpaceBuilder space_builder_; 83 NGConstraintSpaceBuilder space_builder_;
84 Vector<RefPtr<NGUnpositionedFloat>> unpositioned_floats_;
84 }; 85 };
85 86
86 } // namespace blink 87 } // namespace blink
87 88
88 #endif // NGInlineLayoutAlgorithm_h 89 #endif // NGInlineLayoutAlgorithm_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698