blob: a1446b9f10086a8b91fc469bf16784809377f786 [file] [log] [blame]
// Copyright (c) 2012 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_SIGNIN_SIGNIN_MANAGER_FACTORY_H_
#define CHROME_BROWSER_SIGNIN_SIGNIN_MANAGER_FACTORY_H_
#include "base/memory/singleton.h"
#include "build/build_config.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
class SigninManager;
class SigninManagerBase;
class Profile;
// Singleton that owns all SigninManagers and associates them with
// Profiles. Listens for the Profile's destruction notification and cleans up
// the associated SigninManager.
class SigninManagerFactory : public BrowserContextKeyedServiceFactory {
public:
#if defined(OS_CHROMEOS)
// Returns the instance of SigninManager associated with this profile
// (creating one if none exists). Returns NULL if this profile cannot have a
// SigninManager (for example, if |profile| is incognito).
static SigninManagerBase* GetForProfile(Profile* profile);
// Returns the instance of SigninManager associated with this profile. Returns
// null if no SigninManager instance currently exists (will not create a new
// instance).
static SigninManagerBase* GetForProfileIfExists(Profile* profile);
static const SigninManagerBase* GetForProfileIfExists(const Profile* profile);
#else
// On non-ChromeOS platforms, the SigninManager the factory creates will be
// an instance of the extended SigninManager class.
static SigninManager* GetForProfile(Profile* profile);
static SigninManager* GetForProfileIfExists(Profile* profile);
static const SigninManager* GetForProfileIfExists(const Profile* profile);
#endif
// Returns an instance of the SigninManagerFactory singleton.
static SigninManagerFactory* GetInstance();
// Implementation of BrowserContextKeyedServiceFactory (public so tests
// can call it).
void RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable* registry) override;
private:
friend struct base::DefaultSingletonTraits<SigninManagerFactory>;
SigninManagerFactory();
~SigninManagerFactory() override;
// BrowserContextKeyedServiceFactory:
KeyedService* BuildServiceInstanceFor(
content::BrowserContext* profile) const override;
};
#endif // CHROME_BROWSER_SIGNIN_SIGNIN_MANAGER_FACTORY_H_