| Index: net/quic/platform/api/quic_clock.h
|
| diff --git a/net/quic/platform/api/quic_clock.h b/net/quic/platform/api/quic_clock.h
|
| index e95e0bc8a1bd911d70d7cc58cba7d645cf3bedff..795d2a8e6ca1f842873c482b1e89c7c4a84e7a10 100644
|
| --- a/net/quic/platform/api/quic_clock.h
|
| +++ b/net/quic/platform/api/quic_clock.h
|
| @@ -33,6 +33,10 @@ class QUIC_EXPORT_PRIVATE QuicClock {
|
| // Converts |walltime| to a QuicTime relative to this clock's epoch.
|
| virtual QuicTime ConvertWallTimeToQuicTime(
|
| const QuicWallTime& walltime) const;
|
| +
|
| + protected:
|
| + // Creates a new QuicTime using |time_us| as the internal value.
|
| + QuicTime MakeTime(uint64_t time_us) const { return QuicTime(time_us); }
|
| };
|
|
|
| } // namespace net
|
|
|