blob: 4bf10a928b3c7d8b51fc53aeb5c7b50f23207b52 [file] [log] [blame]
// Copyright 2017 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_IDENTITY_MANAGER_FACTORY_H_
#define CHROME_BROWSER_SIGNIN_IDENTITY_MANAGER_FACTORY_H_
#include "base/memory/singleton.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
namespace identity {
class IdentityManager;
}
class Profile;
// Singleton that owns all IdentityManager instances and associates them with
// Profiles.
class IdentityManagerFactory : public BrowserContextKeyedServiceFactory {
public:
static identity::IdentityManager* GetForProfile(Profile* profile);
static identity::IdentityManager* GetForProfileIfExists(Profile* profile);
// Returns an instance of the IdentityManagerFactory singleton.
static IdentityManagerFactory* GetInstance();
private:
friend struct base::DefaultSingletonTraits<IdentityManagerFactory>;
IdentityManagerFactory();
~IdentityManagerFactory() override;
// BrowserContextKeyedServiceFactory:
KeyedService* BuildServiceInstanceFor(
content::BrowserContext* profile) const override;
DISALLOW_COPY_AND_ASSIGN(IdentityManagerFactory);
};
#endif // CHROME_BROWSER_SIGNIN_IDENTITY_MANAGER_FACTORY_H_