Index: chromecast/media/cma/pipeline/audio_decoder_software_wrapper.h |
diff --git a/chromecast/media/cma/pipeline/audio_decoder_software_wrapper.h b/chromecast/media/cma/pipeline/audio_decoder_software_wrapper.h |
index abb77a639c73aee1e33a369aea3effb86683a303..738c18de3bdd371e7934ade9dfccac543f260c11 100644 |
--- a/chromecast/media/cma/pipeline/audio_decoder_software_wrapper.h |
+++ b/chromecast/media/cma/pipeline/audio_decoder_software_wrapper.h |
@@ -7,9 +7,10 @@ |
#include <stdint.h> |
+#include <memory> |
+ |
#include "base/macros.h" |
#include "base/memory/ref_counted.h" |
-#include "base/memory/scoped_ptr.h" |
#include "base/memory/weak_ptr.h" |
#include "chromecast/media/cma/decoder/cast_audio_decoder.h" |
#include "chromecast/public/media/media_pipeline_backend.h" |
@@ -55,7 +56,7 @@ class AudioDecoderSoftwareWrapper |
MediaPipelineBackend::AudioDecoder* const backend_decoder_; |
DecoderDelegate* delegate_; |
- scoped_ptr<CastAudioDecoder> software_decoder_; |
+ std::unique_ptr<CastAudioDecoder> software_decoder_; |
AudioConfig output_config_; |
scoped_refptr<DecoderBufferBase> pending_pushed_buffer_; |