#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::metrics {
extern const char kPriceNotificationEmailHistogramName[];
extern const char kTrackedProductCountHistogramName[];
enum class PriceNotificationEmailState { … };
class ScheduledMetricsManager { … };
}
#endif