Index: remoting/host/chromeos/clipboard_aura.cc |
diff --git a/remoting/host/chromeos/clipboard_aura.cc b/remoting/host/chromeos/clipboard_aura.cc |
index 53ce71e2d080001745e2544b069647b7d958ebde..a9c01baa077bdc4927ec5d33d681a907b412d4f0 100644 |
--- a/remoting/host/chromeos/clipboard_aura.cc |
+++ b/remoting/host/chromeos/clipboard_aura.cc |
@@ -33,7 +33,7 @@ void ClipboardAura::Start( |
scoped_ptr<protocol::ClipboardStub> client_clipboard) { |
DCHECK(thread_checker_.CalledOnValidThread()); |
- client_clipboard_ = client_clipboard.Pass(); |
+ client_clipboard_ = std::move(client_clipboard); |
// Aura doesn't provide a clipboard-changed notification. The only way to |
// detect clipboard changes is by polling. |