| Index: webrtc/p2p/base/p2ptransportchannel.h
|
| diff --git a/webrtc/p2p/base/p2ptransportchannel.h b/webrtc/p2p/base/p2ptransportchannel.h
|
| index 9efb96c42d091759b28d5c25b21a96ab52228359..b3375b026a6e895924b6223badd667c84fe6b9e0 100644
|
| --- a/webrtc/p2p/base/p2ptransportchannel.h
|
| +++ b/webrtc/p2p/base/p2ptransportchannel.h
|
| @@ -108,12 +108,12 @@ class P2PTransportChannel : public TransportChannelImpl,
|
| bool SetSslRole(rtc::SSLRole role) override { return false; }
|
|
|
| // Set up the ciphers to use for DTLS-SRTP.
|
| - bool SetSrtpCiphers(const std::vector<std::string>& ciphers) override {
|
| + bool SetSrtpCryptoSuites(const std::vector<int>& ciphers) override {
|
| return false;
|
| }
|
|
|
| // Find out which DTLS-SRTP cipher was negotiated.
|
| - bool GetSrtpCryptoSuite(std::string* cipher) override { return false; }
|
| + bool GetSrtpCryptoSuite(int* cipher) override { return false; }
|
|
|
| // Find out which DTLS cipher was negotiated.
|
| bool GetSslCipherSuite(int* cipher) override { return false; }
|
|
|