chromium/components/feature_engagement/internal/system_time_provider.cc

// Copyright 2017 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/system_time_provider.h"

#include "base/numerics/clamped_math.h"
#include "base/time/time.h"

namespace feature_engagement {

SystemTimeProvider::SystemTimeProvider() = default;

SystemTimeProvider::~SystemTimeProvider() = default;

uint32_t SystemTimeProvider::GetCurrentDay() const {}

base::Time SystemTimeProvider::Now() const {}

}  // namespace feature_engagement