| 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 NGConstraintSpaceBuilder_h | 5 #ifndef NGConstraintSpaceBuilder_h |
| 6 #define NGConstraintSpaceBuilder_h | 6 #define NGConstraintSpaceBuilder_h |
| 7 | 7 |
| 8 #include "core/layout/ng/ng_constraint_space.h" | 8 #include "core/layout/ng/ng_constraint_space.h" |
| 9 #include "core/layout/ng/ng_units.h" | |
| 10 #include "wtf/Optional.h" | 9 #include "wtf/Optional.h" |
| 11 | 10 |
| 12 namespace blink { | 11 namespace blink { |
| 13 | 12 |
| 14 class CORE_EXPORT NGConstraintSpaceBuilder final | 13 class CORE_EXPORT NGConstraintSpaceBuilder final |
| 15 : public GarbageCollectedFinalized<NGConstraintSpaceBuilder> { | 14 : public GarbageCollectedFinalized<NGConstraintSpaceBuilder> { |
| 16 public: | 15 public: |
| 17 NGConstraintSpaceBuilder(const NGConstraintSpace* parent_space); | 16 NGConstraintSpaceBuilder(const NGConstraintSpace* parent_space); |
| 18 | 17 |
| 19 NGConstraintSpaceBuilder(NGWritingMode writing_mode); | 18 NGConstraintSpaceBuilder(NGWritingMode writing_mode); |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 | 85 |
| 87 NGMarginStrut margin_strut_; | 86 NGMarginStrut margin_strut_; |
| 88 NGLogicalOffset bfc_offset_; | 87 NGLogicalOffset bfc_offset_; |
| 89 std::shared_ptr<NGExclusions> exclusions_; | 88 std::shared_ptr<NGExclusions> exclusions_; |
| 90 WTF::Optional<LayoutUnit> clearance_offset_; | 89 WTF::Optional<LayoutUnit> clearance_offset_; |
| 91 }; | 90 }; |
| 92 | 91 |
| 93 } // namespace blink | 92 } // namespace blink |
| 94 | 93 |
| 95 #endif // NGConstraintSpaceBuilder | 94 #endif // NGConstraintSpaceBuilder |
| OLD | NEW |