| Index: remoting/signaling/xmpp_login_handler.cc
|
| diff --git a/remoting/signaling/xmpp_login_handler.cc b/remoting/signaling/xmpp_login_handler.cc
|
| index 448ecbef6fae382fbed139f589fe54bfee6469aa..dc12382395963c54c43fa86224da845eaee451cc 100644
|
| --- a/remoting/signaling/xmpp_login_handler.cc
|
| +++ b/remoting/signaling/xmpp_login_handler.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "remoting/signaling/xmpp_login_handler.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/base64.h"
|
| #include "base/bind.h"
|
| #include "base/logging.h"
|
| @@ -182,7 +184,7 @@ void XmppLoginHandler::OnStanza(scoped_ptr<buzz::XmlElement> stanza) {
|
| return;
|
| }
|
| state_ = State::DONE;
|
| - delegate_->OnHandshakeDone(jid_, stream_parser_.Pass());
|
| + delegate_->OnHandshakeDone(jid_, std::move(stream_parser_));
|
| break;
|
|
|
| default:
|
|
|