blob: 36e8fb85d765a1c058f6e1f6d8e901af5cf62aea [file] [log] [blame]
// Copyright 2013 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 IOS_CHROME_BROWSER_SIGNIN_AUTHENTICATION_SERVICE_FACTORY_H_
#define IOS_CHROME_BROWSER_SIGNIN_AUTHENTICATION_SERVICE_FACTORY_H_
#include <memory>
#include "base/macros.h"
#include "components/keyed_service/ios/browser_state_keyed_service_factory.h"
namespace base {
template <typename T>
struct DefaultSingletonTraits;
} // namespace base
namespace user_prefs {
class PrefRegistrySyncable;
}
namespace ios {
class ChromeBrowserState;
}
class AuthenticationService;
class AuthenticationServiceDelegate;
// Singleton that owns all |AuthenticationServices| and associates them with
// browser states. Listens for the |BrowserState|'s destruction notification and
// cleans up the associated |AuthenticationService|.
class AuthenticationServiceFactory : public BrowserStateKeyedServiceFactory {
public:
static AuthenticationService* GetForBrowserState(
ios::ChromeBrowserState* browser_state);
static AuthenticationServiceFactory* GetInstance();
// Force the instantiation of AuthenticationService and initialize it with
// the given delegate. Must be called before GetForBrowserState (not doing
// so is a security issue and the app will terminate).
static void CreateAndInitializeForBrowserState(
ios::ChromeBrowserState* browser_state,
std::unique_ptr<AuthenticationServiceDelegate> delegate);
private:
friend struct base::DefaultSingletonTraits<AuthenticationServiceFactory>;
AuthenticationServiceFactory();
~AuthenticationServiceFactory() override;
// BrowserStateKeyedServiceFactory implementation.
std::unique_ptr<KeyedService> BuildServiceInstanceFor(
web::BrowserState* context) const override;
void RegisterBrowserStatePrefs(
user_prefs::PrefRegistrySyncable* registry) override;
// KeyedServiceBaseFactory implementation.
bool ServiceIsNULLWhileTesting() const override;
DISALLOW_COPY_AND_ASSIGN(AuthenticationServiceFactory);
};
#endif // IOS_CHROME_BROWSER_SIGNIN_AUTHENTICATION_SERVICE_FACTORY_H_