| Index: third_party/WebKit/Source/core/layout/LayoutTextFragment.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTextFragment.cpp b/third_party/WebKit/Source/core/layout/LayoutTextFragment.cpp
|
| index 903b2be0b7874c4a947dbcd8d46bf3c04ebb47a4..72d1e4fd430d6e00a1399086abdd06f47fbbcd6a 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTextFragment.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTextFragment.cpp
|
| @@ -108,7 +108,7 @@ void LayoutTextFragment::transformText() {
|
| // version we will, potentially, screw up the first-letter settings where
|
| // we only use portions of the string.
|
| if (RefPtr<StringImpl> textToTransform = originalText())
|
| - LayoutText::setText(textToTransform.release(), true);
|
| + LayoutText::setText(std::move(textToTransform), true);
|
| }
|
|
|
| UChar LayoutTextFragment::previousCharacter() const {
|
|
|