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

Unified Diff: net/quic/quic_time.cc

Issue 1160203003: net: Remove the remaining use of GG_(U)INTn_C macros. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stdint.h Created 5 years, 7 months 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_protocol.h ('k') | net/quic/quic_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_time.cc
diff --git a/net/quic/quic_time.cc b/net/quic/quic_time.cc
index 6d3155746fe445a172de09c81d50d8a642ef8af6..7da849ebc01e564cebcfe89cce7a164c2e387ec9 100644
--- a/net/quic/quic_time.cc
+++ b/net/quic/quic_time.cc
@@ -4,12 +4,14 @@
#include "net/quic/quic_time.h"
+#include <stdint.h>
+
#include "base/logging.h"
namespace net {
// Highest number of microseconds that DateTimeOffset can hold.
-const int64 kQuicInfiniteTimeUs = GG_INT64_C(0x7fffffffffffffff) / 10;
+const int64 kQuicInfiniteTimeUs = INT64_C(0x7fffffffffffffff) / 10;
QuicTime::Delta::Delta(base::TimeDelta delta)
: delta_(delta) {
« no previous file with comments | « net/quic/quic_protocol.h ('k') | net/quic/quic_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698