#include "components/attribution_reporting/aggregatable_utils.h"
#include <optional>
#include <string>
#include <vector>
#include "base/functional/function_ref.h"
#include "base/time/time.h"
#include "base/timer/lap_timer.h"
#include "components/attribution_reporting/aggregatable_filtering_id_max_bytes.h"
#include "components/attribution_reporting/aggregatable_trigger_config.h"
#include "components/attribution_reporting/privacy_math.h"
#include "components/attribution_reporting/source_registration_time_config.mojom.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/perf/perf_result_reporter.h"
#include "third_party/google_benchmark/src/include/benchmark/benchmark.h"
namespace attribution_reporting {
namespace {
SourceRegistrationTimeConfig;
struct TestCase { … };
const TestCase kTestCases[] = …;
class AggregatableUtilsPerfTest : public testing::Test,
public testing::WithParamInterface<TestCase> { … };
TEST_P(AggregatableUtilsPerfTest, GetNullAggregatableReports) { … }
INSTANTIATE_TEST_SUITE_P(…);
}
}