// Copyright 2022 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 "quiche/quic/core/quic_default_clock.h" #include "absl/time/clock.h" namespace quic { QuicDefaultClock* QuicDefaultClock::Get() { … } QuicTime QuicDefaultClock::ApproximateNow() const { … } QuicTime QuicDefaultClock::Now() const { … } QuicWallTime QuicDefaultClock::WallNow() const { … } } // namespace quic