#ifndef COMPONENTS_REPORTING_METRICS_FAKES_FAKE_METRIC_REPORT_QUEUE_H_
#define COMPONENTS_REPORTING_METRICS_FAKES_FAKE_METRIC_REPORT_QUEUE_H_
#include <string>
#include <vector>
#include "base/functional/callback_helpers.h"
#include "base/test/repeating_test_future.h"
#include "base/time/time.h"
#include "components/reporting/metrics/metric_report_queue.h"
#include "components/reporting/metrics/reporting_settings.h"
#include "components/reporting/proto/synced/metric_data.pb.h"
#include "components/reporting/proto/synced/record_constants.pb.h"
namespace reporting::test {
class FakeMetricReportQueue : public MetricReportQueue { … };
}
#endif