| Index: third_party/WebKit/Source/core/layout/ng/ng_physical_text_fragment.h
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_physical_text_fragment.h b/third_party/WebKit/Source/core/layout/ng/ng_physical_text_fragment.h
|
| index a619ee133dd55ed2aae038c1ae04d17d4b0f8538..367ede30e47835c823372debc6c104eefbbf4d9c 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/ng_physical_text_fragment.h
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_physical_text_fragment.h
|
| @@ -16,7 +16,7 @@ namespace blink {
|
| class CORE_EXPORT NGPhysicalTextFragment final : public NGPhysicalFragmentBase {
|
| public:
|
| NGPhysicalTextFragment(NGPhysicalSize size, NGPhysicalSize overflow)
|
| - : NGPhysicalFragmentBase(size, overflow, FragmentText) {}
|
| + : NGPhysicalFragmentBase(size, overflow, kFragmentText) {}
|
|
|
| DEFINE_INLINE_TRACE_AFTER_DISPATCH() {
|
| NGPhysicalFragmentBase::traceAfterDispatch(visitor);
|
| @@ -26,8 +26,8 @@ class CORE_EXPORT NGPhysicalTextFragment final : public NGPhysicalFragmentBase {
|
| DEFINE_TYPE_CASTS(NGPhysicalTextFragment,
|
| NGPhysicalFragmentBase,
|
| text,
|
| - text->Type() == NGPhysicalFragmentBase::FragmentText,
|
| - text.Type() == NGPhysicalFragmentBase::FragmentText);
|
| + text->Type() == NGPhysicalFragmentBase::kFragmentText,
|
| + text.Type() == NGPhysicalFragmentBase::kFragmentText);
|
|
|
| } // namespace blink
|
|
|
|
|