blob: a9a79e52552404d138ea5dd7746e0d6d54992130 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_SUPERVISED_USER_CUSTODIAN_PROFILE_DOWNLOADER_SERVICE_FACTORY_H_
#define CHROME_BROWSER_SUPERVISED_USER_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();
~CustodianProfileDownloaderServiceFactory() override;
// BrowserContextKeyedServiceFactory:
KeyedService* BuildServiceInstanceFor(
content::BrowserContext* profile) const override;
};
#endif // CHROME_BROWSER_SUPERVISED_USER_CUSTODIAN_PROFILE_DOWNLOADER_SERVICE_FACTORY_H_