// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/notifications/scheduler/test/fake_clock.h" namespace notifications { namespace test { // static base::Time FakeClock::GetTime(const char* time_str) { … } FakeClock::FakeClock() : … { … } FakeClock::~FakeClock() = default; void FakeClock::SetNow(const char* time_str) { … } void FakeClock::SetNow(const base::Time& time) { … } void FakeClock::Reset() { … } base::Time FakeClock::Now() const { … } } // namespace test } // namespace notifications