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

Unified Diff: net/quic/quic_connection_helper.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_connection_helper.h ('k') | net/quic/quic_connection_logger.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_connection_helper.cc
diff --git a/net/quic/quic_connection_helper.cc b/net/quic/quic_connection_helper.cc
index a57bc94d1a3aea7080ac0687dfb1d740830d55ac..0ec9ec2f31f65de35e36e701395f7a000bce9536 100644
--- a/net/quic/quic_connection_helper.cc
+++ b/net/quic/quic_connection_helper.cc
@@ -43,7 +43,7 @@ class QuicChromeAlarm : public QuicAlarm {
weak_factory_.InvalidateWeakPtrs();
}
- int64 delay_us = deadline().Subtract(clock_->Now()).ToMicroseconds();
+ int64_t delay_us = deadline().Subtract(clock_->Now()).ToMicroseconds();
if (delay_us < 0) {
delay_us = 0;
}
« no previous file with comments | « net/quic/quic_connection_helper.h ('k') | net/quic/quic_connection_logger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698