// 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. #ifndef COMPONENTS_PLUS_ADDRESSES_AFFILIATIONS_PLUS_ADDRESS_AFFILIATION_MATCH_HELPER_H_ #define COMPONENTS_PLUS_ADDRESSES_AFFILIATIONS_PLUS_ADDRESS_AFFILIATION_MATCH_HELPER_H_ #include <string> #include <vector> #include "base/containers/flat_set.h" #include "base/functional/callback_forward.h" #include "base/memory/raw_ref.h" #include "components/plus_addresses/plus_address_types.h" namespace affiliations { class AffiliationService; class FacetURI; } namespace plus_addresses { class PlusAddressService; // Interacts with the AffiliationService on behalf of the PlusAddressService. // For each `GetAffiliatedPlusProfiles()` incoming request, it supplies the // PlusAddressService with a list of plus profiles that are relevant matches for // the originally requested plus profile based on the affiliation of their // facets. class PlusAddressAffiliationMatchHelper { … }; } // namespace plus_addresses #endif // COMPONENTS_PLUS_ADDRESSES_AFFILIATIONS_PLUS_ADDRESS_AFFILIATION_MATCH_HELPER_H_