| Index: third_party/WebKit/Source/platform/fonts/shaping/CachingWordShaper.cpp
|
| diff --git a/third_party/WebKit/Source/platform/fonts/shaping/CachingWordShaper.cpp b/third_party/WebKit/Source/platform/fonts/shaping/CachingWordShaper.cpp
|
| index c2261289d0b79598cba7ebe9d6cf657cc9d23b66..5cc8b7f6c4d2d4f9e46336eec79f9f56759e47be 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/shaping/CachingWordShaper.cpp
|
| +++ b/third_party/WebKit/Source/platform/fonts/shaping/CachingWordShaper.cpp
|
| @@ -74,7 +74,7 @@ static inline float shapeResultsForRun(
|
| totalWidth += wordResult->width();
|
| if (fallbackFonts)
|
| wordResult->fallbackFonts(fallbackFonts);
|
| - resultsBuffer->appendResult(wordResult.release());
|
| + resultsBuffer->appendResult(std::move(wordResult));
|
| }
|
| }
|
| return totalWidth;
|
|
|