| Index: remoting/protocol/webrtc_video_capturer_adapter.cc
|
| diff --git a/remoting/protocol/webrtc_video_capturer_adapter.cc b/remoting/protocol/webrtc_video_capturer_adapter.cc
|
| index 42442b36f19a1b1c0b79963541f3800bdf15f72a..1f1f5ff6b3d5f71a96e0ee0cad5c8d60542c79dc 100644
|
| --- a/remoting/protocol/webrtc_video_capturer_adapter.cc
|
| +++ b/remoting/protocol/webrtc_video_capturer_adapter.cc
|
| @@ -13,7 +13,7 @@ const int kFramesPerSec = 30;
|
|
|
| WebrtcVideoCapturerAdapter::WebrtcVideoCapturerAdapter(
|
| scoped_ptr<webrtc::DesktopCapturer> capturer)
|
| - : desktop_capturer_(capturer.Pass()) {
|
| + : desktop_capturer_(std::move(capturer)) {
|
| DCHECK(desktop_capturer_);
|
|
|
| thread_checker_.DetachFromThread();
|
|
|