| Index: net/socket/ssl_client_socket.h
|
| diff --git a/net/socket/ssl_client_socket.h b/net/socket/ssl_client_socket.h
|
| index c8bfa8e6f3df52ddf2b8ff0cc5bde624f1f562c0..138ede849a6a3259e42252119639865795f44ff3 100644
|
| --- a/net/socket/ssl_client_socket.h
|
| +++ b/net/socket/ssl_client_socket.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef NET_SOCKET_SSL_CLIENT_SOCKET_H_
|
| #define NET_SOCKET_SSL_CLIENT_SOCKET_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
|
|
| #include "base/gtest_prod_util.h"
|
| @@ -181,7 +183,7 @@ class NET_EXPORT SSLClientSocket : public SSLSocket {
|
| // Section 9.2 of the HTTP/2 specification. Note that the server might still
|
| // pick an inadequate cipher suite.
|
| static bool HasCipherAdequateForHTTP2(
|
| - const std::vector<uint16>& cipher_suites);
|
| + const std::vector<uint16_t>& cipher_suites);
|
|
|
| // Determine if the TLS version required by Section 9.2 of the HTTP/2
|
| // specification is enabled. Note that the server might still pick an
|
|
|