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