// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/network_time/time_tracker/time_tracker.h" #include "base/logging.h" namespace { // Amount of divergence allowed between wall clock and tick clock. const uint32_t kClockDivergenceSeconds = …; } // namespace namespace network_time { TimeTracker::TimeTracker(const base::Time& system_time, const base::TimeTicks& system_ticks, const base::Time& time, const base::TimeDelta& uncertainty) : … { … } bool TimeTracker::GetTime(const base::Time& system_time, const base::TimeTicks& system_ticks, base::Time* time, base::TimeDelta* uncertainty) const { … } } // namespace network_time