| 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 880ce9f0a1150a9b0f5389db4ea1d31104fb5fbc..5fe524170447a988cdef58ed012ac2f4568962da 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
|
| @@ -16,19 +16,11 @@ namespace blink {
|
|
|
| class CORE_EXPORT NGTextFragment final : public NGFragmentBase {
|
| public:
|
| - NGTextFragment(LayoutUnit inlineSize,
|
| - LayoutUnit blockSize,
|
| - LayoutUnit inlineOverflow,
|
| - LayoutUnit blockOverflow,
|
| + NGTextFragment(NGLogicalSize size,
|
| + NGLogicalSize overflow,
|
| NGWritingMode writingMode,
|
| NGDirection direction)
|
| - : NGFragmentBase(inlineSize,
|
| - blockSize,
|
| - inlineOverflow,
|
| - blockOverflow,
|
| - writingMode,
|
| - direction,
|
| - FragmentText) {}
|
| + : NGFragmentBase(size, overflow, writingMode, direction, FragmentText) {}
|
|
|
| String text() const;
|
|
|
|
|