#ifndef COMPONENTS_ATTRIBUTION_REPORTING_REGISTRATION_INFO_H_
#define COMPONENTS_ATTRIBUTION_REPORTING_REGISTRATION_INFO_H_
#include <optional>
#include <string_view>
#include "base/component_export.h"
#include "base/types/expected.h"
#include "net/http/structured_headers.h"
namespace attribution_reporting {
enum class Registrar;
enum class RegistrationInfoError { … };
struct COMPONENT_EXPORT(ATTRIBUTION_REPORTING) RegistrationInfo { … };
COMPONENT_EXPORT(ATTRIBUTION_REPORTING)
void RecordRegistrationInfoError(RegistrationInfoError);
}
#endif