| Index: net/quic/quic_clock.cc
|
| diff --git a/net/quic/quic_clock.cc b/net/quic/quic_clock.cc
|
| index 32d99917f33991eca3c6ee9c894f6d8eb6ced2de..26c1a659032dc43ae56194c675f982e46dad2426 100644
|
| --- a/net/quic/quic_clock.cc
|
| +++ b/net/quic/quic_clock.cc
|
| @@ -13,6 +13,11 @@ QuicClock::QuicClock() {
|
|
|
| QuicClock::~QuicClock() {}
|
|
|
| +QuicTime QuicClock::ApproximateNow() const {
|
| + // Chrome does not have a distinct notion of ApproximateNow().
|
| + return Now();
|
| +}
|
| +
|
| QuicTime QuicClock::Now() const {
|
| return QuicTime(base::TimeTicks::Now());
|
| }
|
|
|