| Index: third_party/WebKit/Source/core/layout/ng/ng_legacy_block_layout_algorithm.cc
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_legacy_block_layout_algorithm.cc b/third_party/WebKit/Source/core/layout/ng/ng_legacy_block_layout_algorithm.cc
|
| index 015213dd9c2b5a2e65acd9370e4ece2b4d47636f..3f4d8c630fbd3969765fee1fb50e5c77212f11d7 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/ng_legacy_block_layout_algorithm.cc
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_legacy_block_layout_algorithm.cc
|
| @@ -4,7 +4,7 @@
|
|
|
| #include "core/layout/ng/ng_legacy_block_layout_algorithm.h"
|
|
|
| -#include "core/layout/ng/ng_physical_fragment.h"
|
| +#include "core/layout/ng/ng_physical_box_fragment.h"
|
|
|
| namespace blink {
|
|
|
| @@ -16,8 +16,8 @@ NGLegacyBlockLayoutAlgorithm::NGLegacyBlockLayoutAlgorithm(
|
| constraint_space_(constraint_space) {}
|
|
|
| NGLayoutStatus NGLegacyBlockLayoutAlgorithm::Layout(
|
| - NGPhysicalFragmentBase*,
|
| - NGPhysicalFragmentBase** fragment_out,
|
| + NGPhysicalFragment*,
|
| + NGPhysicalFragment** fragment_out,
|
| NGLayoutAlgorithm**) {
|
| *fragment_out = block_->RunOldLayout(*constraint_space_);
|
| return kNewFragment;
|
|
|