| Index: third_party/WebKit/Source/core/css/BinaryDataFontFaceSource.h
|
| diff --git a/third_party/WebKit/Source/core/css/BinaryDataFontFaceSource.h b/third_party/WebKit/Source/core/css/BinaryDataFontFaceSource.h
|
| index 2bc8565f94592e94b5ebb021f289fe8719fbb1bd..e2e064a647c2797622e1741440cc4b812eec714c 100644
|
| --- a/third_party/WebKit/Source/core/css/BinaryDataFontFaceSource.h
|
| +++ b/third_party/WebKit/Source/core/css/BinaryDataFontFaceSource.h
|
| @@ -6,7 +6,7 @@
|
| #define BinaryDataFontFaceSource_h
|
|
|
| #include "core/css/CSSFontFaceSource.h"
|
| -#include "wtf/OwnPtr.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -22,7 +22,7 @@ public:
|
| private:
|
| PassRefPtr<SimpleFontData> createFontData(const FontDescription&) override;
|
|
|
| - OwnPtr<FontCustomPlatformData> m_customPlatformData;
|
| + std::unique_ptr<FontCustomPlatformData> m_customPlatformData;
|
| };
|
|
|
| } // namespace blink
|
|
|