naiveproxy/net/third_party/quic/test_tools/mock_clock.cc
2018-12-09 21:59:24 -05:00

30 lines
664 B
C++

// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/third_party/quic/test_tools/mock_clock.h"
namespace quic {
MockClock::MockClock() : now_(QuicTime::Zero()) {}
MockClock::~MockClock() {}
void MockClock::AdvanceTime(QuicTime::Delta delta) {
now_ = now_ + delta;
}
QuicTime MockClock::Now() const {
return now_;
}
QuicTime MockClock::ApproximateNow() const {
return now_;
}
QuicWallTime MockClock::WallNow() const {
return QuicWallTime::FromUNIXSeconds((now_ - QuicTime::Zero()).ToSeconds());
}
} // namespace quic