#ifndef CHROME_BROWSER_SIGNIN_ABOUT_SIGNIN_INTERNALS_FACTORY_H_
#define CHROME_BROWSER_SIGNIN_ABOUT_SIGNIN_INTERNALS_FACTORY_H_
#include "base/memory/singleton.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
class AboutSigninInternals;
class Profile;
class AboutSigninInternalsFactory : public BrowserContextKeyedServiceFactory {
public:
static AboutSigninInternals* GetForProfile(Profile* profile);
static AboutSigninInternalsFactory* GetInstance();
virtual void RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable* registry) OVERRIDE;
private:
friend struct DefaultSingletonTraits<AboutSigninInternalsFactory>;
AboutSigninInternalsFactory();
virtual ~AboutSigninInternalsFactory();
virtual KeyedService* BuildServiceInstanceFor(
content::BrowserContext* context) const OVERRIDE;
};
#endif