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) { |