| Index: remoting/host/audio_capturer_win.cc
|
| diff --git a/remoting/host/audio_capturer_win.cc b/remoting/host/audio_capturer_win.cc
|
| index d9a8a14326eeb4350e14c2e989727120b803cb09..26da64cc4ef6abece66b1c4384df86c0ef311391 100644
|
| --- a/remoting/host/audio_capturer_win.cc
|
| +++ b/remoting/host/audio_capturer_win.cc
|
| @@ -235,7 +235,7 @@ void AudioCapturerWin::DoCapture() {
|
| packet->set_bytes_per_sample(AudioPacket::BYTES_PER_SAMPLE_2);
|
| packet->set_channels(AudioPacket::CHANNELS_STEREO);
|
|
|
| - callback_.Run(packet.Pass());
|
| + callback_.Run(std::move(packet));
|
| }
|
|
|
| hr = audio_capture_client_->ReleaseBuffer(frames);
|
|
|