| 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 NGBlockLayoutAlgorithm_h | 5 #ifndef NGBlockLayoutAlgorithm_h |
| 6 #define NGBlockLayoutAlgorithm_h | 6 #define NGBlockLayoutAlgorithm_h |
| 7 | 7 |
| 8 #include "core/layout/ng/ng_box.h" |
| 8 #include "wtf/RefPtr.h" | 9 #include "wtf/RefPtr.h" |
| 9 | 10 |
| 10 namespace blink { | 11 namespace blink { |
| 11 | 12 |
| 12 class ComputedStyle; | 13 class ComputedStyle; |
| 13 class LayoutBox; | |
| 14 class NGConstraintSpace; | 14 class NGConstraintSpace; |
| 15 class NGFragment; | 15 class NGFragment; |
| 16 | 16 |
| 17 // A class for general block layout (e.g. a <div> with no special style). | 17 // A class for general block layout (e.g. a <div> with no special style). |
| 18 // Lays out the children in sequence. | 18 // Lays out the children in sequence. |
| 19 class NGBlockLayoutAlgorithm { | 19 class NGBlockLayoutAlgorithm { |
| 20 public: | 20 public: |
| 21 NGBlockLayoutAlgorithm(const ComputedStyle*); | 21 NGBlockLayoutAlgorithm(PassRefPtr<const ComputedStyle>, NGBox); |
| 22 | 22 |
| 23 // Actual layout implementation. Lays out the children in sequence within the | 23 // Actual layout implementation. Lays out the children in sequence within the |
| 24 // constraints given by the NGConstraintSpace. Returns a fragment with the | 24 // constraints given by the NGConstraintSpace. Returns a fragment with the |
| 25 // resulting layout information. | 25 // resulting layout information. |
| 26 // This function can not be const because for interruptible layout, we have | 26 // This function can not be const because for interruptible layout, we have |
| 27 // to be able to store state information. | 27 // to be able to store state information. |
| 28 NGFragment* layout(const NGConstraintSpace&); | 28 NGFragment* layout(const NGConstraintSpace&); |
| 29 | 29 |
| 30 private: | 30 private: |
| 31 RefPtr<const ComputedStyle> m_style; | 31 RefPtr<const ComputedStyle> m_style; |
| 32 NGBox m_firstChild; |
| 32 }; | 33 }; |
| 33 | 34 |
| 34 } // namespace blink | 35 } // namespace blink |
| 35 | 36 |
| 36 #endif // NGBlockLayoutAlgorithm_h | 37 #endif // NGBlockLayoutAlgorithm_h |
| OLD | NEW |