| Index: net/quic/quic_clock.cc
|
| diff --git a/net/quic/quic_clock.cc b/net/quic/quic_clock.cc
|
| index 6c8dd48d21852289c7219b00619ed9ded9ebe850..b80ad6ab5f5a45aef37a7fce6022a7f3931bd86c 100644
|
| --- a/net/quic/quic_clock.cc
|
| +++ b/net/quic/quic_clock.cc
|
| @@ -23,8 +23,7 @@ QuicTime QuicClock::Now() const {
|
| }
|
|
|
| QuicWallTime QuicClock::WallNow() const {
|
| - return QuicWallTime::FromUNIXSeconds(
|
| - base::Time::Now().ToInternalValue() / 1000000);
|
| + return QuicWallTime::FromUNIXSeconds(base::Time::Now().ToTimeT());
|
| }
|
|
|
| } // namespace net
|
|
|