| Index: media/audio/audio_output_controller.h
|
| diff --git a/media/audio/audio_output_controller.h b/media/audio/audio_output_controller.h
|
| index 58e1e458a97e1ec06b5157706a62940919b7d2cc..1f5c358ae3cedc04cc4ca90ea3aeb468ff7b335f 100644
|
| --- a/media/audio/audio_output_controller.h
|
| +++ b/media/audio/audio_output_controller.h
|
| @@ -7,6 +7,8 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/atomic_ref_count.h"
|
| #include "base/callback.h"
|
| #include "base/macros.h"
|
| @@ -256,7 +258,7 @@ class MEDIA_EXPORT AudioOutputController
|
|
|
| // Flags when we've asked for a stream to start but it never did.
|
| base::AtomicRefCount on_more_io_data_called_;
|
| - scoped_ptr<base::OneShotTimer> wedge_timer_;
|
| + std::unique_ptr<base::OneShotTimer> wedge_timer_;
|
|
|
| // Flag which indicates errors received during Stop/Close should be ignored.
|
| // These errors are generally harmless since a fresh stream is about to be
|
|
|