| Index: remoting/host/ipc_audio_capturer.cc
|
| diff --git a/remoting/host/ipc_audio_capturer.cc b/remoting/host/ipc_audio_capturer.cc
|
| index 5bc568d913e77c624ff35456e97b22cc80e8721b..89f3c258052ff7c543ef16942809dedd1cc10eb2 100644
|
| --- a/remoting/host/ipc_audio_capturer.cc
|
| +++ b/remoting/host/ipc_audio_capturer.cc
|
| @@ -28,7 +28,7 @@ bool IpcAudioCapturer::Start(const PacketCapturedCallback& callback) {
|
| }
|
|
|
| void IpcAudioCapturer::OnAudioPacket(scoped_ptr<AudioPacket> packet) {
|
| - callback_.Run(packet.Pass());
|
| + callback_.Run(std::move(packet));
|
| }
|
|
|
| } // namespace remoting
|
|
|