| Index: content/renderer/pepper/pepper_platform_audio_input.h
|
| diff --git a/content/renderer/pepper/pepper_platform_audio_input.h b/content/renderer/pepper/pepper_platform_audio_input.h
|
| index 33eb7fc9e8f9b1de79cfcc0b55c5172190d35281..829738c678e7ca93b3994a0bdf3ce6118ecf49a2 100644
|
| --- a/content/renderer/pepper/pepper_platform_audio_input.h
|
| +++ b/content/renderer/pepper/pepper_platform_audio_input.h
|
| @@ -5,12 +5,12 @@
|
| #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_INPUT_H_
|
| #define CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_INPUT_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "media/audio/audio_input_ipc.h"
|
| #include "media/audio/audio_parameters.h"
|
| @@ -101,7 +101,7 @@ class PepperPlatformAudioInput
|
|
|
| // Used to send/receive IPC. THIS MUST ONLY BE ACCESSED ON THE
|
| // I/O THREAD.
|
| - scoped_ptr<media::AudioInputIPC> ipc_;
|
| + std::unique_ptr<media::AudioInputIPC> ipc_;
|
|
|
| scoped_refptr<base::SingleThreadTaskRunner> main_task_runner_;
|
| scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_;
|
|
|