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

Unified Diff: net/quic/quic_server_id.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/quic/quic_server_id.h ('k') | net/quic/quic_session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_server_id.cc
diff --git a/net/quic/quic_server_id.cc b/net/quic/quic_server_id.cc
index a79d67738fd128239723187ff7d4709558a32c3f..b810bb3745bf87a77e2adcaebcaffc352a57edf5 100644
--- a/net/quic/quic_server_id.cc
+++ b/net/quic/quic_server_id.cc
@@ -21,11 +21,11 @@ QuicServerId::QuicServerId(const HostPortPair& host_port_pair,
PrivacyMode privacy_mode)
: host_port_pair_(host_port_pair), privacy_mode_(privacy_mode) {}
-QuicServerId::QuicServerId(const string& host, uint16 port)
+QuicServerId::QuicServerId(const string& host, uint16_t port)
: host_port_pair_(host, port), privacy_mode_(PRIVACY_MODE_DISABLED) {}
QuicServerId::QuicServerId(const string& host,
- uint16 port,
+ uint16_t port,
PrivacyMode privacy_mode)
: host_port_pair_(host, port), privacy_mode_(privacy_mode) {}
« no previous file with comments | « net/quic/quic_server_id.h ('k') | net/quic/quic_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698