// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_OFFLINE_CONTENT_PROVIDER_FACTORY_H_ #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_OFFLINE_CONTENT_PROVIDER_FACTORY_H_ #include <memory> #include "components/keyed_service/core/simple_keyed_service_factory.h" class DownloadOfflineContentProvider; class SimpleFactoryKey; namespace base { template <typename T> class NoDestructor; } // namespace base // This class builds and associates DownloadOfflineContentProvider with their // Profiles, represented by SimpleFactoryKeys. class DownloadOfflineContentProviderFactory : public SimpleKeyedServiceFactory { … }; #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_OFFLINE_CONTENT_PROVIDER_FACTORY_H_