| Index: net/quic/quic_bandwidth.cc
|
| diff --git a/net/quic/quic_bandwidth.cc b/net/quic/quic_bandwidth.cc
|
| index b42a1f37e2e453c200bef87c30395b596c170c1d..911eb6c83cf4582e4cff41f2416c0fb3a11d5010 100644
|
| --- a/net/quic/quic_bandwidth.cc
|
| +++ b/net/quic/quic_bandwidth.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "net/quic/quic_bandwidth.h"
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/logging.h"
|
| #include "net/quic/quic_time.h"
|
| #include "net/quic/quic_types.h"
|
| @@ -11,7 +13,7 @@
|
| namespace net {
|
|
|
| // Highest number that QuicBandwidth can hold.
|
| -const int64 kQuicInfiniteBandwidth = GG_INT64_C(0x7fffffffffffffff);
|
| +const int64 kQuicInfiniteBandwidth = INT64_C(0x7fffffffffffffff);
|
|
|
| // static
|
| QuicBandwidth QuicBandwidth::Zero() {
|
|
|