| Index: third_party/WebKit/Source/core/layout/ng/ng_text_fragment.h
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_text_fragment.h b/third_party/WebKit/Source/core/layout/ng/ng_text_fragment.h
|
| index a4addc79ed1cf5b399c0b8973110c7cdad3c366e..6658cf8d252881bfb6487592f7e5de902802e525 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/ng_text_fragment.h
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_text_fragment.h
|
| @@ -6,17 +6,17 @@
|
| #define NGTextFragment_h
|
|
|
| #include "core/CoreExport.h"
|
| -#include "core/layout/ng/ng_fragment_base.h"
|
| #include "core/layout/ng/ng_physical_text_fragment.h"
|
| +#include "core/layout/ng/ng_fragment.h"
|
|
|
| namespace blink {
|
|
|
| -class CORE_EXPORT NGTextFragment final : public NGFragmentBase {
|
| +class CORE_EXPORT NGTextFragment final : public NGFragment {
|
| public:
|
| NGTextFragment(NGWritingMode writing_mode,
|
| TextDirection direction,
|
| NGPhysicalTextFragment* physical_text_fragment)
|
| - : NGFragmentBase(writing_mode, direction, physical_text_fragment) {}
|
| + : NGFragment(writing_mode, direction, physical_text_fragment) {}
|
| };
|
|
|
| } // namespace blink
|
|
|