// Copyright 2018 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/offline_pages/core/offline_clock.h" #include <ostream> #include "base/check.h" #include "base/time/default_clock.h" #include "base/time/time.h" namespace offline_pages { namespace { const base::Clock* custom_clock_ = …; } const base::Clock* OfflineClock() { … } void SetOfflineClockForTesting(const base::Clock* clock) { … } base::Time OfflineTimeNow() { … } } // namespace offline_pages