// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/services/auction_worklet/public/cpp/private_aggregation_reporting.h" #include <optional> #include <string> #include "content/services/auction_worklet/public/mojom/private_aggregation_request.mojom.h" namespace auction_worklet { std::optional<auction_worklet::mojom::ReservedEventType> ParseReservedEventType( const std::string& event_type_str) { … } std::optional<auction_worklet::mojom::EventTypePtr> ParsePrivateAggregationEventType(const std::string& event_type_str) { … } } // namespace auction_worklet