| Index: third_party/WebKit/Source/core/layout/ng/ng_layout_coordinator.cc
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_layout_coordinator.cc b/third_party/WebKit/Source/core/layout/ng/ng_layout_coordinator.cc
|
| index 9528a97d35a941325bd83f9d5a5c11dd6316b638..977f1c704a528daf14a58f6df3cc3a9e095819f4 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/ng_layout_coordinator.cc
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_layout_coordinator.cc
|
| @@ -5,7 +5,7 @@
|
| #include "core/layout/ng/ng_layout_coordinator.h"
|
|
|
| #include "core/layout/ng/ng_layout_input_node.h"
|
| -#include "core/layout/ng/ng_physical_fragment_base.h"
|
| +#include "core/layout/ng/ng_physical_fragment.h"
|
|
|
| namespace blink {
|
|
|
| @@ -15,14 +15,14 @@ NGLayoutCoordinator::NGLayoutCoordinator(NGLayoutInputNode* input_node,
|
| NGLayoutInputNode::AlgorithmForInputNode(input_node, constraint_space));
|
| }
|
|
|
| -bool NGLayoutCoordinator::Tick(NGPhysicalFragmentBase** out_fragment) {
|
| +bool NGLayoutCoordinator::Tick(NGPhysicalFragment** out_fragment) {
|
| NGLayoutAlgorithm* child_algorithm;
|
|
|
| // Tick should never be called without a layout algorithm on the stack.
|
| DCHECK(layout_algorithms_.size());
|
|
|
| - NGPhysicalFragmentBase* fragment;
|
| - NGPhysicalFragmentBase* in_fragment = fragment_;
|
| + NGPhysicalFragment* fragment;
|
| + NGPhysicalFragment* in_fragment = fragment_;
|
| fragment_ = nullptr;
|
|
|
| switch (layout_algorithms_.back()->Layout(in_fragment, &fragment,
|
|
|