| Index: chromecast/media/cma/backend/alsa/stream_mixer_alsa_input_impl.h
|
| diff --git a/chromecast/media/cma/backend/alsa/stream_mixer_alsa_input_impl.h b/chromecast/media/cma/backend/alsa/stream_mixer_alsa_input_impl.h
|
| index f31e1fa9d980bf4e8a44217fe0b7f6939bdede4a..882e2ffaa9e7edb888c4fedf63e6afd35ac4dddf 100644
|
| --- a/chromecast/media/cma/backend/alsa/stream_mixer_alsa_input_impl.h
|
| +++ b/chromecast/media/cma/backend/alsa/stream_mixer_alsa_input_impl.h
|
| @@ -6,10 +6,10 @@
|
| #define CHROMECAST_MEDIA_CMA_BACKEND_ALSA_STREAM_MIXER_ALSA_INPUT_IMPL_H_
|
|
|
| #include <deque>
|
| +#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 "base/synchronization/lock.h"
|
| #include "chromecast/media/cma/backend/alsa/media_pipeline_backend_alsa.h"
|
| @@ -164,7 +164,7 @@ class StreamMixerAlsaInputImpl : public StreamMixerAlsa::InputQueue {
|
|
|
| OnReadyToDeleteCb delete_cb_;
|
|
|
| - scoped_ptr<::media::MultiChannelResampler> resampler_;
|
| + std::unique_ptr<::media::MultiChannelResampler> resampler_;
|
|
|
| base::WeakPtr<StreamMixerAlsaInputImpl> weak_this_;
|
| base::WeakPtrFactory<StreamMixerAlsaInputImpl> weak_factory_;
|
|
|