| 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 NGOutOfFlowLayoutPart_h | 5 #ifndef NGOutOfFlowLayoutPart_h |
| 6 #define NGOutOfFlowLayoutPart_h | 6 #define NGOutOfFlowLayoutPart_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 | 9 |
| 10 #include "core/layout/ng/ng_absolute_utils.h" | 10 #include "core/layout/ng/ng_absolute_utils.h" |
| 11 #include "core/layout/ng/ng_constraint_space.h" | 11 #include "core/layout/ng/ng_constraint_space.h" |
| 12 #include "core/layout/ng/ng_layout_algorithm.h" | 12 #include "core/layout/ng/ng_layout_algorithm.h" |
| 13 #include "core/layout/ng/ng_units.h" | |
| 14 #include "platform/heap/Handle.h" | 13 #include "platform/heap/Handle.h" |
| 15 #include "wtf/Optional.h" | 14 #include "wtf/Optional.h" |
| 16 | 15 |
| 17 namespace blink { | 16 namespace blink { |
| 18 | 17 |
| 19 class ComputedStyle; | 18 class ComputedStyle; |
| 20 class NGBlockNode; | 19 class NGBlockNode; |
| 21 class NGFragmentBuilder; | 20 class NGFragmentBuilder; |
| 22 class NGConstraintSpace; | 21 class NGConstraintSpace; |
| 23 class NGLayoutResult; | 22 class NGLayoutResult; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 49 NGFragmentBuilder* container_builder_; | 48 NGFragmentBuilder* container_builder_; |
| 50 | 49 |
| 51 NGLogicalOffset container_border_offset_; | 50 NGLogicalOffset container_border_offset_; |
| 52 NGPhysicalOffset container_border_physical_offset_; | 51 NGPhysicalOffset container_border_physical_offset_; |
| 53 Member<NGConstraintSpace> container_space_; | 52 Member<NGConstraintSpace> container_space_; |
| 54 }; | 53 }; |
| 55 | 54 |
| 56 } // namespace blink | 55 } // namespace blink |
| 57 | 56 |
| 58 #endif | 57 #endif |
| OLD | NEW |