// Copyright 2015 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_FACET_MANAGER_H_ #define COMPONENTS_AFFILIATIONS_CORE_BROWSER_FACET_MANAGER_H_ #include <set> #include <vector> #include "base/memory/raw_ptr.h" #include "base/memory/ref_counted.h" #include "base/time/time.h" #include "components/affiliations/core/browser/affiliation_service.h" #include "components/affiliations/core/browser/affiliation_utils.h" namespace base { class Clock; class TaskRunner; } // namespace base namespace affiliations { class FacetManagerHost; // Encapsulates the state and logic required for handling affiliation requests // concerning a single facet. The AffiliationBackend owns one instance for each // facet that requires attention, and it itself implements the FacetManagerHost // interface to provide shared functionality needed by all FacetManagers. class FacetManager { … }; } // namespace affiliations #endif // COMPONENTS_AFFILIATIONS_CORE_BROWSER_FACET_MANAGER_H_