| Index: third_party/WebKit/public/platform/WebFont.h
|
| diff --git a/third_party/WebKit/public/platform/WebFont.h b/third_party/WebKit/public/platform/WebFont.h
|
| index 60842384b29f27e1202b4cb395f89699ef52dab2..97b436b56728151c2f090f55cb69d911fdb0edf8 100644
|
| --- a/third_party/WebKit/public/platform/WebFont.h
|
| +++ b/third_party/WebKit/public/platform/WebFont.h
|
| @@ -8,7 +8,7 @@
|
| #include "WebCanvas.h"
|
| #include "WebColor.h"
|
| #include "WebCommon.h"
|
| -#include "WebPrivateOwnPtr.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -45,7 +45,7 @@ private:
|
| explicit WebFont(const WebFontDescription&);
|
|
|
| class Impl;
|
| - WebPrivateOwnPtr<Impl> m_private;
|
| + std::unique_ptr<Impl> m_private;
|
| };
|
|
|
| } // namespace blink
|
|
|