| Index: chromecast/media/cma/pipeline/audio_pipeline_impl.h
|
| diff --git a/chromecast/media/cma/pipeline/audio_pipeline_impl.h b/chromecast/media/cma/pipeline/audio_pipeline_impl.h
|
| index 7c81cd27bb380e40a8d2cbdf141e34b34dff231b..2d96ef6f4698817ea02ff756bcc0d5e7cf71b1a2 100644
|
| --- a/chromecast/media/cma/pipeline/audio_pipeline_impl.h
|
| +++ b/chromecast/media/cma/pipeline/audio_pipeline_impl.h
|
| @@ -5,10 +5,10 @@
|
| #ifndef CHROMECAST_MEDIA_CMA_BASE_AUDIO_PIPELINE_IMPL_H_
|
| #define CHROMECAST_MEDIA_CMA_BASE_AUDIO_PIPELINE_IMPL_H_
|
|
|
| +#include <memory>
|
| #include <vector>
|
|
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "chromecast/media/cma/pipeline/av_pipeline_client.h"
|
| #include "chromecast/media/cma/pipeline/av_pipeline_impl.h"
|
| #include "chromecast/public/media/media_pipeline_backend.h"
|
| @@ -32,7 +32,7 @@ class AudioPipelineImpl : public AvPipelineImpl {
|
|
|
| ::media::PipelineStatus Initialize(
|
| const ::media::AudioDecoderConfig& config,
|
| - scoped_ptr<CodedFrameProvider> frame_provider);
|
| + std::unique_ptr<CodedFrameProvider> frame_provider);
|
|
|
| void SetVolume(float volume);
|
|
|
|
|