| 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/CoreExport.h" |
| 9 #include "core/layout/ng/geometry/ng_logical_offset.h" | |
| 10 #include "core/layout/ng/ng_physical_fragment.h" | 9 #include "core/layout/ng/ng_physical_fragment.h" |
| 10 #include "core/layout/ng/ng_units.h" |
| 11 #include "platform/fonts/FontBaseline.h" | 11 #include "platform/fonts/FontBaseline.h" |
| 12 #include "platform/heap/Handle.h" | 12 #include "platform/heap/Handle.h" |
| 13 #include "wtf/Vector.h" | 13 #include "wtf/Vector.h" |
| 14 | 14 |
| 15 namespace blink { | 15 namespace blink { |
| 16 | 16 |
| 17 class ComputedStyle; | 17 class ComputedStyle; |
| 18 class FontMetrics; | 18 class FontMetrics; |
| 19 class NGConstraintSpace; | 19 class NGConstraintSpace; |
| 20 class NGFragmentBuilder; | 20 class NGFragmentBuilder; |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 FontBaseline baseline_type_; | 157 FontBaseline baseline_type_; |
| 158 | 158 |
| 159 #if DCHECK_IS_ON() | 159 #if DCHECK_IS_ON() |
| 160 unsigned is_bidi_reordered_ : 1; | 160 unsigned is_bidi_reordered_ : 1; |
| 161 #endif | 161 #endif |
| 162 }; | 162 }; |
| 163 | 163 |
| 164 } // namespace blink | 164 } // namespace blink |
| 165 | 165 |
| 166 #endif // NGLineBuilder_h | 166 #endif // NGLineBuilder_h |
| OLD | NEW |