| 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 NGOutOfFlowLayoutPart_h | 5 #ifndef NGOutOfFlowLayoutPart_h |
| 6 #define NGOutOfFlowLayoutPart_h | 6 #define NGOutOfFlowLayoutPart_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 | 9 |
| 10 #include "core/layout/ng/ng_units.h" | 10 #include "core/layout/ng/ng_units.h" |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 State state_; | 56 State state_; |
| 57 | 57 |
| 58 NGStaticPosition static_position_; | 58 NGStaticPosition static_position_; |
| 59 NGLogicalOffset parent_offset_; | 59 NGLogicalOffset parent_offset_; |
| 60 NGPhysicalOffset parent_physical_offset_; | 60 NGPhysicalOffset parent_physical_offset_; |
| 61 Member<NGConstraintSpace> parent_space_; | 61 Member<NGConstraintSpace> parent_space_; |
| 62 Member<NGBlockNode> node_; | 62 Member<NGBlockNode> node_; |
| 63 Member<NGConstraintSpace> node_space_; | 63 Member<NGConstraintSpace> node_space_; |
| 64 Member<NGFragment> node_fragment_; | 64 Member<NGFragment> node_fragment_; |
| 65 NGAbsolutePhysicalPosition node_position_; | 65 NGAbsolutePhysicalPosition node_position_; |
| 66 Optional<LayoutUnit> inline_estimate_; | 66 Optional<MinAndMaxContentSizes> inline_estimate_; |
| 67 Optional<LayoutUnit> block_estimate_; | 67 Optional<LayoutUnit> block_estimate_; |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 } // namespace blink | 70 } // namespace blink |
| 71 | 71 |
| 72 #endif | 72 #endif |
| OLD | NEW |