#ifndef CHROME_BROWSER_MANAGED_MODE_CUSTODIAN_PROFILE_DOWNLOADER_SERVICE_FACTORY_H_
#define CHROME_BROWSER_MANAGED_MODE_CUSTODIAN_PROFILE_DOWNLOADER_SERVICE_FACTORY_H_
#include "base/memory/singleton.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
class CustodianProfileDownloaderService;
class Profile;
class CustodianProfileDownloaderServiceFactory
: public BrowserContextKeyedServiceFactory {
public:
static CustodianProfileDownloaderService* GetForProfile(Profile* profile);
static CustodianProfileDownloaderServiceFactory* GetInstance();
private:
friend struct
DefaultSingletonTraits<CustodianProfileDownloaderServiceFactory>;
CustodianProfileDownloaderServiceFactory();
virtual ~CustodianProfileDownloaderServiceFactory();
virtual KeyedService* BuildServiceInstanceFor(
content::BrowserContext* profile) const OVERRIDE;
};
#endif