#ifndef CONTENT_BROWSER_ATTRIBUTION_REPORTING_INTEROP_RUNNER_H_
#define CONTENT_BROWSER_ATTRIBUTION_REPORTING_INTEROP_RUNNER_H_
#include <string>
#include <string_view>
#include "base/types/expected.h"
class GURL;
namespace base {
class DictValue;
class Value;
}
namespace content {
struct AttributionInteropRun;
struct AttributionInteropOutput;
namespace aggregation_service {
class TestHpkeKey;
}
base::expected<AttributionInteropOutput, std::string>
RunAttributionInteropSimulation(AttributionInteropRun,
const aggregation_service::TestHpkeKey&);
class ReportBodyAdjuster {
public:
virtual ~ReportBodyAdjuster() = default;
virtual void AdjustAggregatable(base::DictValue&) {}
virtual void AdjustEventLevel(base::DictValue&) {}
virtual void AdjustVerboseDebug(std::string_view debug_data_type,
base::DictValue& body);
virtual void AdjustAggregatableDebug(base::DictValue&) {}
};
void MaybeAdjustReportBody(const GURL&,
base::Value& payload,
ReportBodyAdjuster&);
}
#endif