| Index: net/socket/ssl_client_socket.cc
|
| diff --git a/net/socket/ssl_client_socket.cc b/net/socket/ssl_client_socket.cc
|
| index ccd1f865453df19ed5c594981f396847596a61d6..9b5a0a95d3a0666ed4615e560314721299ae1497 100644
|
| --- a/net/socket/ssl_client_socket.cc
|
| +++ b/net/socket/ssl_client_socket.cc
|
| @@ -181,8 +181,8 @@ bool SSLClientSocket::IsChannelIDEnabled(
|
|
|
| // static
|
| bool SSLClientSocket::HasCipherAdequateForHTTP2(
|
| - const std::vector<uint16>& cipher_suites) {
|
| - for (uint16 cipher : cipher_suites) {
|
| + const std::vector<uint16_t>& cipher_suites) {
|
| + for (uint16_t cipher : cipher_suites) {
|
| if (IsTLSCipherSuiteAllowedByHTTP2(cipher))
|
| return true;
|
| }
|
|
|