| 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 NGConstraintSpace_h | 5 #ifndef NGConstraintSpace_h |
| 6 #define NGConstraintSpace_h | 6 #define NGConstraintSpace_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/layout/ng/ng_macros.h" | |
| 10 #include "core/layout/ng/ng_units.h" | 9 #include "core/layout/ng/ng_units.h" |
| 11 #include "core/layout/ng/ng_writing_mode.h" | 10 #include "core/layout/ng/ng_writing_mode.h" |
| 12 #include "platform/heap/Handle.h" | 11 #include "platform/heap/Handle.h" |
| 13 #include "wtf/text/WTFString.h" | 12 #include "wtf/text/WTFString.h" |
| 14 #include "wtf/Vector.h" | |
| 15 | 13 |
| 16 namespace blink { | 14 namespace blink { |
| 17 | 15 |
| 18 class ComputedStyle; | 16 class ComputedStyle; |
| 19 class LayoutBox; | 17 class LayoutBox; |
| 20 class NGFragment; | 18 class NGFragment; |
| 21 class NGLayoutOpportunityIterator; | 19 class NGLayoutOpportunityIterator; |
| 22 | 20 |
| 23 // TODO(glebl@): unused, delete. | 21 // TODO(glebl@): unused, delete. |
| 24 enum NGExclusionType { | 22 enum NGExclusionType { |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 }; | 151 }; |
| 154 | 152 |
| 155 inline std::ostream& operator<<(std::ostream& stream, | 153 inline std::ostream& operator<<(std::ostream& stream, |
| 156 const NGConstraintSpace& value) { | 154 const NGConstraintSpace& value) { |
| 157 return stream << value.ToString(); | 155 return stream << value.ToString(); |
| 158 } | 156 } |
| 159 | 157 |
| 160 } // namespace blink | 158 } // namespace blink |
| 161 | 159 |
| 162 #endif // NGConstraintSpace_h | 160 #endif // NGConstraintSpace_h |
| OLD | NEW |