// 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_AFFILIATIONS_CORE_BROWSER_AFFILIATION_SOURCE_H_ #define COMPONENTS_AFFILIATIONS_CORE_BROWSER_AFFILIATION_SOURCE_H_ #include <vector> #include "base/functional/callback_forward.h" namespace affiliations { class FacetURI; // The class identifies sources for which affiliations data is needed. The // `AffiliationPrefetcher` manages the various sources and interacts with the // `AffiliationService` to obtain the necessary affiliation data. class AffiliationSource { … }; } // namespace affiliations #endif // COMPONENTS_AFFILIATIONS_CORE_BROWSER_AFFILIATION_SOURCE_H_