| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |