| Index: third_party/WebKit/Source/platform/fonts/FontPlatformData.cpp
|
| diff --git a/third_party/WebKit/Source/platform/fonts/FontPlatformData.cpp b/third_party/WebKit/Source/platform/fonts/FontPlatformData.cpp
|
| index e6f42cb4a1f9505f00dca43dee4d939932aa7e01..d1c7e0dabf94ea0a226b38300683609eb12505b2 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/FontPlatformData.cpp
|
| +++ b/third_party/WebKit/Source/platform/fonts/FontPlatformData.cpp
|
| @@ -131,10 +131,10 @@ FontPlatformData::FontPlatformData(const FontPlatformData& src, float textSize)
|
| #endif
|
| }
|
|
|
| -FontPlatformData::FontPlatformData(PassRefPtr<SkTypeface> tf,
|
| +FontPlatformData::FontPlatformData(sk_sp<SkTypeface> tf,
|
| const char* family, float textSize, bool syntheticBold,
|
| bool syntheticItalic, FontOrientation orientation)
|
| - : m_typeface(tf)
|
| + : m_typeface(std::move(tf))
|
| #if !OS(WIN)
|
| , m_family(family)
|
| #endif
|
|
|