| Index: third_party/WebKit/Source/platform/graphics/ImageSource.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/ImageSource.h b/third_party/WebKit/Source/platform/graphics/ImageSource.h
|
| index 3e5d183be8f9a51eafe28f1fba9810eb2654e703..5e8ded4798ce85ea8cb49a28410af12b6157069d 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/ImageSource.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/ImageSource.h
|
| @@ -30,7 +30,7 @@
|
| #include "platform/graphics/ImageOrientation.h"
|
| #include "wtf/Forward.h"
|
| #include "wtf/Noncopyable.h"
|
| -#include "wtf/OwnPtr.h"
|
| +#include <memory>
|
|
|
| class SkImage;
|
|
|
| @@ -95,7 +95,7 @@ public:
|
| size_t frameBytesAtIndex(size_t) const;
|
|
|
| private:
|
| - OwnPtr<DeferredImageDecoder> m_decoder;
|
| + std::unique_ptr<DeferredImageDecoder> m_decoder;
|
| };
|
|
|
| } // namespace blink
|
|
|