| Index: third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc b/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc
|
| index 9cce4ad5ad75142c716048f798ca25a5fcb56bea..87bc026b80b4ccb30ba758e576b2b983d8e90eb7 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc
|
| @@ -4,7 +4,6 @@
|
|
|
| #include "core/layout/ng/ng_block_layout_algorithm.h"
|
|
|
| -#include "core/layout/ng/ng_box_iterator.h"
|
| #include "core/layout/ng/ng_constraint_space.h"
|
| #include "core/layout/ng/ng_fragment.h"
|
| #include "core/layout/ng/ng_length_utils.h"
|
| @@ -28,7 +27,7 @@ TEST_F(NGBlockLayoutAlgorithmTest, FixedSize) {
|
| NGConstraintSpace* space = new NGConstraintSpace(
|
| HorizontalTopBottom, NGLogicalSize(LayoutUnit(100), NGSizeIndefinite));
|
|
|
| - NGBlockLayoutAlgorithm algorithm(style_, NGBoxIterator(NGBox()));
|
| + NGBlockLayoutAlgorithm algorithm(style_, nullptr);
|
| NGFragment* frag;
|
| while (!algorithm.Layout(space, &frag))
|
| ;
|
|
|