| Index: media/capture/video/win/video_capture_device_mf_win.cc
|
| diff --git a/media/capture/video/win/video_capture_device_mf_win.cc b/media/capture/video/win/video_capture_device_mf_win.cc
|
| index a52463ba8e299e8b7a08bfe0fb14d486ebaf439f..94b91e0363701b0e543343592c33eb1cc3223369 100644
|
| --- a/media/capture/video/win/video_capture_device_mf_win.cc
|
| +++ b/media/capture/video/win/video_capture_device_mf_win.cc
|
| @@ -8,6 +8,8 @@
|
| #include <mferror.h>
|
| #include <stddef.h>
|
|
|
| +#include <utility>
|
| +
|
| #include "base/location.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/strings/stringprintf.h"
|
| @@ -234,7 +236,7 @@ void VideoCaptureDeviceMFWin::AllocateAndStart(
|
|
|
| base::AutoLock lock(lock_);
|
|
|
| - client_ = client.Pass();
|
| + client_ = std::move(client);
|
| DCHECK_EQ(capture_, false);
|
|
|
| CapabilityList capabilities;
|
|
|