chromium/components/attribution_reporting/max_event_level_reports.h

// 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.

#ifndef COMPONENTS_ATTRIBUTION_REPORTING_MAX_EVENT_LEVEL_REPORTS_H_
#define COMPONENTS_ATTRIBUTION_REPORTING_MAX_EVENT_LEVEL_REPORTS_H_

#include "base/component_export.h"
#include "base/types/expected.h"
#include "base/values.h"
#include "components/attribution_reporting/source_registration_error.mojom-forward.h"
#include "components/attribution_reporting/source_type.mojom-forward.h"

namespace attribution_reporting {

// Represents the maximum number of event-level reports that can be created for
// a single attribution source.
//
// https://wicg.github.io/attribution-reporting-api/#attribution-source-max-number-of-event-level-reports
class COMPONENT_EXPORT(ATTRIBUTION_REPORTING) MaxEventLevelReports {};

}  // namespace attribution_reporting

#endif  // COMPONENTS_ATTRIBUTION_REPORTING_MAX_EVENT_LEVEL_REPORTS_H_