Index: webrtc/p2p/base/transportchannel.h |
diff --git a/webrtc/p2p/base/transportchannel.h b/webrtc/p2p/base/transportchannel.h |
index dcfc14dfbf28358d91673a4a9b2740fac4f92893..5e7adfa9c7e76727ec2a4b79bdcd958c878f8197 100644 |
--- a/webrtc/p2p/base/transportchannel.h |
+++ b/webrtc/p2p/base/transportchannel.h |
@@ -106,10 +106,10 @@ |
virtual bool SetSrtpCiphers(const std::vector<std::string>& ciphers) = 0; |
// Finds out which DTLS-SRTP cipher was negotiated. |
- virtual bool GetSrtpCryptoSuite(std::string* cipher) = 0; |
+ virtual bool GetSrtpCipher(std::string* cipher) = 0; |
// Finds out which DTLS cipher was negotiated. |
- virtual bool GetSslCipherSuite(uint16_t* cipher) = 0; |
+ virtual bool GetSslCipher(std::string* cipher) = 0; |
// Gets the local RTCCertificate used for DTLS. |
virtual rtc::scoped_refptr<rtc::RTCCertificate> |