| Index: chromecast/media/cma/decoder/cast_audio_decoder_linux.cc
|
| diff --git a/chromecast/media/cma/decoder/cast_audio_decoder_linux.cc b/chromecast/media/cma/decoder/cast_audio_decoder_linux.cc
|
| index b635764eeda1c00dd71ef398388059f9bb64312f..b5b0396325792992b541c5e5213a6e3ea6f1968a 100644
|
| --- a/chromecast/media/cma/decoder/cast_audio_decoder_linux.cc
|
| +++ b/chromecast/media/cma/decoder/cast_audio_decoder_linux.cc
|
| @@ -5,9 +5,9 @@
|
| #include "chromecast/media/cma/decoder/cast_audio_decoder.h"
|
|
|
| #include <stdint.h>
|
| -
|
| #include <limits>
|
| #include <queue>
|
| +#include <utility>
|
| #include <vector>
|
|
|
| #include "base/bind.h"
|
| @@ -276,7 +276,7 @@ scoped_ptr<CastAudioDecoder> CastAudioDecoder::Create(
|
| scoped_ptr<CastAudioDecoderImpl> decoder(new CastAudioDecoderImpl(
|
| task_runner, initialized_callback, output_format));
|
| decoder->Initialize(config);
|
| - return decoder.Pass();
|
| + return std::move(decoder);
|
| }
|
|
|
| // static
|
|
|