| Index: third_party/WebKit/Source/web/tests/NGInlineLayoutTest.cpp
|
| diff --git a/third_party/WebKit/Source/web/tests/NGInlineLayoutTest.cpp b/third_party/WebKit/Source/web/tests/NGInlineLayoutTest.cpp
|
| index c44883af3000e6c7181b5e26cdccba3738815d87..8d69bfb3cf3e84e38f56719e79dbf2846fd171e1 100644
|
| --- a/third_party/WebKit/Source/web/tests/NGInlineLayoutTest.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/NGInlineLayoutTest.cpp
|
| @@ -51,7 +51,7 @@ TEST_F(NGInlineLayoutTest, BlockWithSingleTextNode) {
|
| NGInlineLayoutAlgorithm* layoutAlgorithm = new NGInlineLayoutAlgorithm(
|
| blockFlow->style(), inlineBox, constraintSpace);
|
|
|
| - NGPhysicalFragmentBase* fragment;
|
| + NGPhysicalFragment* fragment;
|
| while (layoutAlgorithm->Layout(nullptr, &fragment, nullptr) != kNewFragment) {
|
| // Repeat until layout completes.
|
| }
|
| @@ -80,7 +80,7 @@ TEST_F(NGInlineLayoutTest, BlockWithTextAndAtomicInline) {
|
| NGInlineLayoutAlgorithm* layoutAlgorithm = new NGInlineLayoutAlgorithm(
|
| blockFlow->style(), inlineBox, constraintSpace);
|
|
|
| - NGPhysicalFragmentBase* fragment;
|
| + NGPhysicalFragment* fragment;
|
| while (layoutAlgorithm->Layout(nullptr, &fragment, nullptr) != kNewFragment) {
|
| // Repeat until layout completes.
|
| }
|
|
|