Index: webrtc/p2p/base/transportchannelproxy.cc |
diff --git a/webrtc/p2p/base/transportchannelproxy.cc b/webrtc/p2p/base/transportchannelproxy.cc |
index 79772514c69a3adc3b53172a688732d1c6ef5e5e..1e535186b2a37904fcf82c9efc964d1728d4cd9a 100644 |
--- a/webrtc/p2p/base/transportchannelproxy.cc |
+++ b/webrtc/p2p/base/transportchannelproxy.cc |
@@ -189,22 +189,22 @@ bool TransportChannelProxy::GetSslCipher(std::string* cipher) { |
return impl_->GetSslCipher(cipher); |
} |
-bool TransportChannelProxy::GetLocalIdentity( |
- rtc::SSLIdentity** identity) const { |
+bool TransportChannelProxy::GetLocalCertificate( |
+ rtc::scoped_refptr<rtc::RTCCertificate>* certificate) const { |
ASSERT(rtc::Thread::Current() == worker_thread_); |
if (!impl_) { |
return false; |
} |
- return impl_->GetLocalIdentity(identity); |
+ return impl_->GetLocalCertificate(certificate); |
} |
-bool TransportChannelProxy::GetRemoteCertificate( |
+bool TransportChannelProxy::GetRemoteSSLCertificate( |
rtc::SSLCertificate** cert) const { |
ASSERT(rtc::Thread::Current() == worker_thread_); |
if (!impl_) { |
return false; |
} |
- return impl_->GetRemoteCertificate(cert); |
+ return impl_->GetRemoteSSLCertificate(cert); |
} |
bool TransportChannelProxy::ExportKeyingMaterial(const std::string& label, |