| Index: third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoder.h
|
| diff --git a/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoder.h b/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoder.h
|
| index 7bfe240a00d5498ee9b815067c6fe99eafc3eec3..0f875ffe6328a0940408ba4756d2c8053ba522f9 100644
|
| --- a/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoder.h
|
| +++ b/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoder.h
|
| @@ -33,6 +33,7 @@
|
|
|
| #include "platform/image-decoders/FastSharedBufferReader.h"
|
| #include "platform/image-decoders/bmp/BMPImageReader.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -159,9 +160,9 @@ private:
|
| IconDirectoryEntries m_dirEntries;
|
|
|
| // The image decoders for the various frames.
|
| - typedef Vector<OwnPtr<BMPImageReader>> BMPReaders;
|
| + typedef Vector<std::unique_ptr<BMPImageReader>> BMPReaders;
|
| BMPReaders m_bmpReaders;
|
| - typedef Vector<OwnPtr<PNGImageDecoder>> PNGDecoders;
|
| + typedef Vector<std::unique_ptr<PNGImageDecoder>> PNGDecoders;
|
| PNGDecoders m_pngDecoders;
|
|
|
| // Valid only while a BMPImageReader is decoding, this holds the size
|
|
|