Index: webrtc/p2p/base/dtlstransportchannel.cc |
diff --git a/webrtc/p2p/base/dtlstransportchannel.cc b/webrtc/p2p/base/dtlstransportchannel.cc |
index b434d0860e1e73763a89d1fddbc2439d39fd5c4f..ff42a4df13aec4662228cf762465b9b708b812f2 100644 |
--- a/webrtc/p2p/base/dtlstransportchannel.cc |
+++ b/webrtc/p2p/base/dtlstransportchannel.cc |
@@ -186,12 +186,12 @@ bool DtlsTransportChannelWrapper::GetSslRole(rtc::SSLRole* role) const { |
return true; |
} |
-bool DtlsTransportChannelWrapper::GetSslCipher(std::string* cipher) { |
+bool DtlsTransportChannelWrapper::GetSslCipherSuite(uint16_t* cipher) { |
if (dtls_state_ != STATE_OPEN) { |
return false; |
} |
- return dtls_->GetSslCipher(cipher); |
+ return dtls_->GetSslCipherSuite(cipher); |
} |
bool DtlsTransportChannelWrapper::SetRemoteFingerprint( |
@@ -330,7 +330,7 @@ bool DtlsTransportChannelWrapper::SetSrtpCiphers( |
return true; |
} |
-bool DtlsTransportChannelWrapper::GetSrtpCipher(std::string* cipher) { |
+bool DtlsTransportChannelWrapper::GetSrtpCryptoSuite(std::string* cipher) { |
if (dtls_state_ != STATE_OPEN) { |
return false; |
} |