Chromium Code Reviews| Index: webrtc/base/opensslstreamadapter.h |
| diff --git a/webrtc/base/opensslstreamadapter.h b/webrtc/base/opensslstreamadapter.h |
| index 0f3ded9cb498c0919328115d665b97a3937996f9..aa6db5d301df4ec460b14110a09fa048a4851c72 100644 |
| --- a/webrtc/base/opensslstreamadapter.h |
| +++ b/webrtc/base/opensslstreamadapter.h |
| @@ -88,7 +88,7 @@ class OpenSSLStreamAdapter : public SSLStreamAdapter { |
| StreamState GetState() const override; |
| // TODO(guoweis): Move this away from a static class method. |
| - static std::string GetSslCipherSuiteName(int cipher); |
| + static std::string SslCipherSuiteToName(int cipher); |
|
pthatcher1
2015/11/11 19:59:41
cipher_suite?
guoweis_webrtc
2015/11/17 01:21:16
Done.
|
| bool GetSslCipherSuite(int* cipher) override; |
| @@ -101,8 +101,8 @@ class OpenSSLStreamAdapter : public SSLStreamAdapter { |
| size_t result_len) override; |
| // DTLS-SRTP interface |
| - bool SetDtlsSrtpCiphers(const std::vector<std::string>& ciphers) override; |
| - bool GetDtlsSrtpCipher(std::string* cipher) override; |
| + bool SetDtlsSrtpCryptoSuites(const std::vector<int>& ciphers) override; |
| + bool GetDtlsSrtpCryptoSuite(int* cipher) override; |
|
pthatcher1
2015/11/11 19:59:40
crypto_suites or suites?
guoweis_webrtc
2015/11/17 01:21:16
Done.
|
| // Capabilities interfaces |
| static bool HaveDtls(); |