Index: webrtc/p2p/base/dtlstransportchannel_unittest.cc |
diff --git a/webrtc/p2p/base/dtlstransportchannel_unittest.cc b/webrtc/p2p/base/dtlstransportchannel_unittest.cc |
index a967ae31f1b90ad11b0b1bf507920028cc69f970..c2cae73b8bff7a3292fd9df388d2483a01a24f83 100644 |
--- a/webrtc/p2p/base/dtlstransportchannel_unittest.cc |
+++ b/webrtc/p2p/base/dtlstransportchannel_unittest.cc |
@@ -53,9 +53,9 @@ class DtlsTestClient : public sigslot::has_slots<> { |
received_dtls_client_hello_(false), |
received_dtls_server_hello_(false) {} |
void CreateCertificate(rtc::KeyType key_type) { |
- certificate_ = rtc::RTCCertificate::Create( |
- rtc::scoped_ptr<rtc::SSLIdentity>( |
- rtc::SSLIdentity::Generate(name_, key_type)).Pass()); |
+ certificate_ = |
+ rtc::RTCCertificate::Create(rtc::scoped_ptr<rtc::SSLIdentity>( |
+ rtc::SSLIdentity::Generate(name_, key_type))); |
} |
const rtc::scoped_refptr<rtc::RTCCertificate>& certificate() { |
return certificate_; |