chromium/components/commerce/core/metrics/scheduled_metrics_manager.h

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_COMMERCE_CORE_METRICS_SCHEDULED_METRICS_MANAGER_H_
#define COMPONENTS_COMMERCE_CORE_METRICS_SCHEDULED_METRICS_MANAGER_H_

#include <memory>

#include "base/cancelable_callback.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/time/time.h"

class PrefService;

namespace commerce {
class ShoppingService;
}  // namespace commerce

namespace commerce::metrics {

extern const char kPriceNotificationEmailHistogramName[];
extern const char kTrackedProductCountHistogramName[];

// Possible options for the state of the price notification emails setting. This
// enum needs to match the values in enums.xml.
enum class PriceNotificationEmailState {};

class ScheduledMetricsManager {};

}  // namespace commerce::metrics

#endif  // COMPONENTS_COMMERCE_CORE_METRICS_SCHEDULED_METRICS_MANAGER_H_