| Index: third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzShaper.cpp
|
| diff --git a/third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzShaper.cpp b/third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzShaper.cpp
|
| index e6f1577399e7f6c9e6bf51c768794310265afdb1..9dff22c6e15ccaa6fb4f6697df72fe31b8eccf3a 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzShaper.cpp
|
| +++ b/third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzShaper.cpp
|
| @@ -347,7 +347,7 @@ inline bool HarfBuzzShaper::shapeRange(hb_buffer_t* harfBuzzBuffer,
|
| hb_buffer_set_direction(harfBuzzBuffer, TextDirectionToHBDirection(m_textRun.direction(),
|
| m_font->getFontDescription().orientation(), currentFont));
|
|
|
| - hb_font_t* hbFont = face->getScaledFont(currentFontRangeSet);
|
| + hb_font_t* hbFont = face->getScaledFont(std::move(currentFontRangeSet));
|
| hb_shape(hbFont, harfBuzzBuffer, m_features.isEmpty() ? 0 : m_features.data(), m_features.size());
|
|
|
| return true;
|
|
|