| 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 NGLineBuilder_h | 5 #ifndef NGLineBuilder_h |
| 6 #define NGLineBuilder_h | 6 #define NGLineBuilder_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" |
| 8 #include "core/layout/ng/ng_units.h" | 9 #include "core/layout/ng/ng_units.h" |
| 9 #include "core/CoreExport.h" | |
| 10 #include "platform/heap/Handle.h" | 10 #include "platform/heap/Handle.h" |
| 11 #include "wtf/Vector.h" | 11 #include "wtf/Vector.h" |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 class NGConstraintSpace; | 15 class NGConstraintSpace; |
| 16 class NGFragment; | 16 class NGFragment; |
| 17 class NGFragmentBuilder; | 17 class NGFragmentBuilder; |
| 18 class NGInlineNode; | 18 class NGInlineNode; |
| 19 | 19 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 LayoutUnit max_inline_size_; | 52 LayoutUnit max_inline_size_; |
| 53 | 53 |
| 54 #if DCHECK_IS_ON() | 54 #if DCHECK_IS_ON() |
| 55 unsigned is_bidi_reordered_ : 1; | 55 unsigned is_bidi_reordered_ : 1; |
| 56 #endif | 56 #endif |
| 57 }; | 57 }; |
| 58 | 58 |
| 59 } // namespace blink | 59 } // namespace blink |
| 60 | 60 |
| 61 #endif // NGLineBuilder_h | 61 #endif // NGLineBuilder_h |
| OLD | NEW |