// Copyright 2020 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_FETCHER_FACTORY_H_ #define COMPONENTS_AFFILIATIONS_CORE_BROWSER_AFFILIATION_FETCHER_FACTORY_H_ #include <memory> #include "base/memory/scoped_refptr.h" namespace network { class SharedURLLoaderFactory; } // namespace network namespace affiliations { class AffiliationFetcherInterface; class AffiliationFetcherDelegate; // Interface for a factory to construct instances of AffiliationFetcher // subclasses. class AffiliationFetcherFactory { … }; } // namespace affiliations #endif // COMPONENTS_AFFILIATIONS_CORE_BROWSER_AFFILIATION_FETCHER_FACTORY_H_