Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Unified Diff: net/socket/ssl_client_socket.cc

Issue 1535363003: Switch to standard integer types in net/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stddef Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/socket/ssl_client_socket.h ('k') | net/socket/ssl_client_socket_nss.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « net/socket/ssl_client_socket.h ('k') | net/socket/ssl_client_socket_nss.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698