| Index: chrome/renderer/media/cast_rtp_stream.cc
|
| diff --git a/chrome/renderer/media/cast_rtp_stream.cc b/chrome/renderer/media/cast_rtp_stream.cc
|
| index ac4c1da737859b00503a37294f6496bc080eb640..755cfd372b4f37402b3c3d41be5551e1667c6c50 100644
|
| --- a/chrome/renderer/media/cast_rtp_stream.cc
|
| +++ b/chrome/renderer/media/cast_rtp_stream.cc
|
| @@ -5,8 +5,8 @@
|
| #include "chrome/renderer/media/cast_rtp_stream.h"
|
|
|
| #include <stdint.h>
|
| -
|
| #include <algorithm>
|
| +#include <utility>
|
|
|
| #include "base/bind.h"
|
| #include "base/callback_helpers.h"
|
| @@ -437,7 +437,7 @@ class CastAudioSink : public base::SupportsWeakPtr<CastAudioSink>,
|
| sample_frames_in_ += input_params_.frames_per_buffer();
|
| sample_frames_out_ += audio_bus->frames();
|
|
|
| - frame_input_->InsertAudio(audio_bus.Pass(),
|
| + frame_input_->InsertAudio(std::move(audio_bus),
|
| capture_time_of_first_converted_sample);
|
| }
|
|
|
|
|