Index: webrtc/p2p/base/dtlstransportchannel.cc |
diff --git a/webrtc/p2p/base/dtlstransportchannel.cc b/webrtc/p2p/base/dtlstransportchannel.cc |
index 95014f9a6250c534e3e08b8a8882384e308dd17e..e1de4514ff93834a30fe68af2613a0b37433628a 100644 |
--- a/webrtc/p2p/base/dtlstransportchannel.cc |
+++ b/webrtc/p2p/base/dtlstransportchannel.cc |
@@ -8,6 +8,8 @@ |
* be found in the AUTHORS file in the root of the source tree. |
*/ |
+#include <utility> |
+ |
#include "webrtc/p2p/base/dtlstransportchannel.h" |
#include "webrtc/p2p/base/common.h" |
@@ -224,7 +226,7 @@ bool DtlsTransportChannelWrapper::SetRemoteFingerprint( |
} |
// At this point we know we are doing DTLS |
- remote_fingerprint_value_ = remote_fingerprint_value.Pass(); |
+ remote_fingerprint_value_ = std::move(remote_fingerprint_value); |
remote_fingerprint_algorithm_ = digest_alg; |
bool reconnect = dtls_; |