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

Unified Diff: net/quic/port_suggester.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/port_suggester.h ('k') | net/quic/port_suggester_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/port_suggester.cc
diff --git a/net/quic/port_suggester.cc b/net/quic/port_suggester.cc
index b556a24b81945de62c90f2c633dcb27ec998a159..569a0fdfe3100072a96b6f29a5aaf15d712a06bd 100644
--- a/net/quic/port_suggester.cc
+++ b/net/quic/port_suggester.cc
@@ -9,7 +9,7 @@
namespace net {
-PortSuggester::PortSuggester(const HostPortPair& server, uint64 seed)
+PortSuggester::PortSuggester(const HostPortPair& server, uint64_t seed)
: call_count_(0), previous_suggestion_(-1) {
unsigned char hash_bytes[base::kSHA1Length];
base::SHA1HashBytes(
« no previous file with comments | « net/quic/port_suggester.h ('k') | net/quic/port_suggester_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698