| 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 3df9ba16767fa8a2e25c669b9e4a09cb28d0faf2..511161c4e81d3fe5b3d36ee78789b34c1ad9831d 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 {
|
|
|
| @@ -157,9 +158,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
|
|
|