// 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 "services/network/ip_protection/ip_protection_geo_utils.h" #include <memory> #include <optional> #include <string> #include "components/ip_protection/common/ip_protection_data_types.h" namespace network { std::string GetGeoIdFromGeoHint( const std::optional<ip_protection::GeoHint> geo_hint) { … } // TODO(crbug.com/40176497): IN-TEST does not work for multi-line declarations. std::optional<ip_protection::GeoHint> GetGeoHintFromGeoIdForTesting( // IN-TEST const std::string& geo_id) { … } } // namespace network