| Index: remoting/codec/video_decoder_vpx.h
|
| diff --git a/remoting/codec/video_decoder_vpx.h b/remoting/codec/video_decoder_vpx.h
|
| index a386ca20a3e4fb22a700c296083ad744ab37597b..48bbb908eee71e61b1d0f29769fa75a12c8b0e61 100644
|
| --- a/remoting/codec/video_decoder_vpx.h
|
| +++ b/remoting/codec/video_decoder_vpx.h
|
| @@ -5,9 +5,10 @@
|
| #ifndef REMOTING_CODEC_VIDEO_DECODER_VPX_H_
|
| #define REMOTING_CODEC_VIDEO_DECODER_VPX_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "remoting/codec/scoped_vpx_codec.h"
|
| #include "remoting/codec/video_decoder.h"
|
|
|
| @@ -19,8 +20,8 @@ namespace remoting {
|
| class VideoDecoderVpx : public VideoDecoder {
|
| public:
|
| // Create decoders for the specified protocol.
|
| - static scoped_ptr<VideoDecoderVpx> CreateForVP8();
|
| - static scoped_ptr<VideoDecoderVpx> CreateForVP9();
|
| + static std::unique_ptr<VideoDecoderVpx> CreateForVP8();
|
| + static std::unique_ptr<VideoDecoderVpx> CreateForVP9();
|
|
|
| ~VideoDecoderVpx() override;
|
|
|
|
|