| Index: media/audio/win/audio_low_latency_output_win.h
|
| diff --git a/media/audio/win/audio_low_latency_output_win.h b/media/audio/win/audio_low_latency_output_win.h
|
| index 97c1afb04c818413d24979a3101a65f412bdf210..97d81b93fc61493af7ac3e0227856565e675e987 100644
|
| --- a/media/audio/win/audio_low_latency_output_win.h
|
| +++ b/media/audio/win/audio_low_latency_output_win.h
|
| @@ -98,11 +98,11 @@
|
| #include <stddef.h>
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/threading/platform_thread.h"
|
| #include "base/threading/simple_thread.h"
|
| #include "base/win/scoped_co_mem.h"
|
| @@ -183,7 +183,7 @@ class MEDIA_EXPORT WASAPIAudioOutputStream :
|
|
|
| // Rendering is driven by this thread (which has no message loop).
|
| // All OnMoreData() callbacks will be called from this thread.
|
| - scoped_ptr<base::DelegateSimpleThread> render_thread_;
|
| + std::unique_ptr<base::DelegateSimpleThread> render_thread_;
|
|
|
| // Contains the desired audio format which is set up at construction.
|
| // Extended PCM waveform format structure based on WAVEFORMATEXTENSIBLE.
|
| @@ -240,7 +240,7 @@ class MEDIA_EXPORT WASAPIAudioOutputStream :
|
| base::win::ScopedHandle stop_render_event_;
|
|
|
| // Container for retrieving data from AudioSourceCallback::OnMoreData().
|
| - scoped_ptr<AudioBus> audio_bus_;
|
| + std::unique_ptr<AudioBus> audio_bus_;
|
|
|
| base::win::ScopedComPtr<IAudioClock> audio_clock_;
|
|
|
|
|