Chromium Code Reviews| Index: third_party/WebKit/Source/core/layout/ng/ng_layout_algorithm.h |
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_layout_algorithm.h b/third_party/WebKit/Source/core/layout/ng/ng_layout_algorithm.h |
| index 99b8da2adc557387ee9ea1268929303a38a2e389..fd3194b9d889ecb53a8395bdee502548d93beaac 100644 |
| --- a/third_party/WebKit/Source/core/layout/ng/ng_layout_algorithm.h |
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_layout_algorithm.h |
| @@ -14,7 +14,7 @@ |
| namespace blink { |
| struct MinAndMaxContentSizes; |
| -class NGPhysicalFragment; |
| +class NGLayoutResult; |
| // Base class for all LayoutNG algorithms. |
| class CORE_EXPORT NGLayoutAlgorithm { |
| @@ -27,7 +27,7 @@ class CORE_EXPORT NGLayoutAlgorithm { |
| // constraints given by the NGConstraintSpace. Returns a fragment with the |
|
ikilpatrick
2017/02/21 22:26:02
update comment.
cbiesinger
2017/02/22 18:09:00
Done.
|
| // resulting layout information. |
| // TODO(layout-dev): attempt to make this function const. |
| - virtual RefPtr<NGPhysicalFragment> Layout() = 0; |
| + virtual RefPtr<NGLayoutResult> Layout() = 0; |
| // Computes the min-content and max-content intrinsic sizes for the given box. |
| // The result will not take any min-width, max-width or width properties into |