// Copyright 2023 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/feature_engagement/internal/test/test_time_provider.h" namespace feature_engagement { void TestTimeProvider::SetCurrentDay(uint32_t current_day) { … } void TestTimeProvider::SetCurrentTime(base::Time now) { … } uint32_t TestTimeProvider::GetCurrentDay() const { … } base::Time TestTimeProvider::Now() const { … } } // namespace feature_engagement