#ifndef COMPONENTS_AGGREGATION_SERVICE_AGGREGATION_COORDINATOR_UTILS_H_
#define COMPONENTS_AGGREGATION_SERVICE_AGGREGATION_COORDINATOR_UTILS_H_
#include <string_view>
#include <vector>
#include "base/component_export.h"
#include "url/origin.h"
namespace aggregation_service {
inline constexpr std::string_view kDefaultAggregationCoordinatorAwsCloud = …;
inline constexpr std::string_view kDefaultAggregationCoordinatorGcpCloud = …;
COMPONENT_EXPORT(AGGREGATION_SERVICE)
url::Origin GetDefaultAggregationCoordinatorOrigin();
COMPONENT_EXPORT(AGGREGATION_SERVICE)
bool IsAggregationCoordinatorOriginAllowed(const url::Origin&);
class COMPONENT_EXPORT(AGGREGATION_SERVICE)
ScopedAggregationCoordinatorAllowlistForTesting { … };
}
#endif