| Index: media/capture/video/android/video_capture_device_android.cc
|
| diff --git a/media/capture/video/android/video_capture_device_android.cc b/media/capture/video/android/video_capture_device_android.cc
|
| index e8f99f1a187a3f1d049c7a281e252dbe2321d5b5..38d9c6d8dfb7867cb5c23880878cd31837a3ec72 100644
|
| --- a/media/capture/video/android/video_capture_device_android.cc
|
| +++ b/media/capture/video/android/video_capture_device_android.cc
|
| @@ -5,6 +5,7 @@
|
| #include "media/capture/video/android/video_capture_device_android.h"
|
|
|
| #include <stdint.h>
|
| +#include <utility>
|
|
|
| #include "base/android/jni_android.h"
|
| #include "base/android/jni_string.h"
|
| @@ -59,7 +60,7 @@ void VideoCaptureDeviceAndroid::AllocateAndStart(
|
| base::AutoLock lock(lock_);
|
| if (state_ != kIdle)
|
| return;
|
| - client_ = client.Pass();
|
| + client_ = std::move(client);
|
| got_first_frame_ = false;
|
| }
|
|
|
|
|