Index: net/quic/quic_time.h |
diff --git a/net/quic/quic_time.h b/net/quic/quic_time.h |
index 5fbe30cce9890ee5055369203791af9803e0613b..53e5ebe02c20f779c4a664488faa3cce92787f24 100644 |
--- a/net/quic/quic_time.h |
+++ b/net/quic/quic_time.h |
@@ -18,6 +18,8 @@ |
namespace net { |
static const uint64 kNumMicrosPerSecond = base::Time::kMicrosecondsPerSecond; |
+static const uint64 kNumMicrosPerMilli = |
+ base::Time::kMicrosecondsPerMillisecond; |
// A QuicTime is a purely relative time. QuicTime values from different clocks |
// cannot be compared to each other. If you need an absolute time, see |