| 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/LayoutBox.h" | |
| 10 #include "core/layout/ng/ng_physical_constraint_space.h" | 9 #include "core/layout/ng/ng_physical_constraint_space.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" | 13 #include "wtf/Vector.h" |
| 15 | 14 |
| 16 namespace blink { | 15 namespace blink { |
| 17 | 16 |
| 18 class LayoutBox; | 17 class LayoutBox; |
| 19 class NGFragment; | 18 class NGFragment; |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 }; | 119 }; |
| 121 | 120 |
| 122 inline std::ostream& operator<<(std::ostream& stream, | 121 inline std::ostream& operator<<(std::ostream& stream, |
| 123 const NGConstraintSpace& value) { | 122 const NGConstraintSpace& value) { |
| 124 return stream << value.toString(); | 123 return stream << value.toString(); |
| 125 } | 124 } |
| 126 | 125 |
| 127 } // namespace blink | 126 } // namespace blink |
| 128 | 127 |
| 129 #endif // NGConstraintSpace_h | 128 #endif // NGConstraintSpace_h |
| OLD | NEW |