| Index: remoting/client/audio_player.h
|
| diff --git a/remoting/client/audio_player.h b/remoting/client/audio_player.h
|
| index 94de1b4297e25d9ef2bc092ca3819f63f7580e76..f88e66335cddfa2aad432311f1bc320884724c94 100644
|
| --- a/remoting/client/audio_player.h
|
| +++ b/remoting/client/audio_player.h
|
| @@ -9,9 +9,9 @@
|
| #include <stdint.h>
|
|
|
| #include <list>
|
| +#include <memory>
|
|
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/synchronization/lock.h"
|
| #include "remoting/proto/audio.pb.h"
|
|
|
| @@ -21,7 +21,7 @@ class AudioPlayer {
|
| public:
|
| virtual ~AudioPlayer();
|
|
|
| - void ProcessAudioPacket(scoped_ptr<AudioPacket> packet);
|
| + void ProcessAudioPacket(std::unique_ptr<AudioPacket> packet);
|
|
|
| protected:
|
| AudioPlayer();
|
|
|