Index: webrtc/p2p/base/transport.cc |
diff --git a/webrtc/p2p/base/transport.cc b/webrtc/p2p/base/transport.cc |
index 3e45d207377606900e6119fed38b12a02be36adf..9688e4aedcdf125a38802571c4e24908a9dc285b 100644 |
--- a/webrtc/p2p/base/transport.cc |
+++ b/webrtc/p2p/base/transport.cc |
@@ -412,7 +412,7 @@ bool Transport::VerifyCertificateFingerprint( |
return BadTransportDescription( |
"Fingerprint provided but no identity available.", error_desc); |
} |
- rtc::scoped_ptr<rtc::SSLFingerprint> fp_tmp(rtc::SSLFingerprint::Create( |
+ std::unique_ptr<rtc::SSLFingerprint> fp_tmp(rtc::SSLFingerprint::Create( |
fingerprint->algorithm, certificate->identity())); |
ASSERT(fp_tmp.get() != NULL); |
if (*fp_tmp == *fingerprint) { |