1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
// Copyright 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_PROFILE_OAUTH2_TOKEN_SERVICE_FACTORY_H_
#define CHROME_BROWSER_SIGNIN_PROFILE_OAUTH2_TOKEN_SERVICE_FACTORY_H_
#include "base/memory/singleton.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
class ProfileOAuth2TokenService;
class Profile;
#if defined(OS_ANDROID)
class AndroidProfileOAuth2TokenService;
#else
class MutableProfileOAuth2TokenService;
#endif
// Singleton that owns all ProfileOAuth2TokenServices and associates them with
// Profiles. Listens for the Profile's destruction notification and cleans up
// the associated ProfileOAuth2TokenService.
class ProfileOAuth2TokenServiceFactory
: public BrowserContextKeyedServiceFactory {
public:
// Returns the instance of ProfileOAuth2TokenService associated with this
// profile (creating one if none exists). Returns NULL if this profile
// cannot have a ProfileOAuth2TokenService (for example, if |profile| is
// incognito).
static ProfileOAuth2TokenService* GetForProfile(Profile* profile);
// Returns the platform specific instance of ProfileOAuth2TokenService
// associated with this profile (creating one if none exists). Returns NULL
// if this profile cannot have a ProfileOAuth2TokenService (for example,
// if |profile| is incognito).
#if defined(OS_ANDROID)
static AndroidProfileOAuth2TokenService* GetPlatformSpecificForProfile(
Profile* profile);
#else
static MutableProfileOAuth2TokenService* GetPlatformSpecificForProfile(
Profile* profile);
#endif
// Returns an instance of the ProfileOAuth2TokenServiceFactory singleton.
static ProfileOAuth2TokenServiceFactory* GetInstance();
private:
friend struct DefaultSingletonTraits<ProfileOAuth2TokenServiceFactory>;
#if defined(OS_ANDROID)
typedef AndroidProfileOAuth2TokenService PlatformSpecificOAuth2TokenService;
#else
typedef MutableProfileOAuth2TokenService PlatformSpecificOAuth2TokenService;
#endif
ProfileOAuth2TokenServiceFactory();
~ProfileOAuth2TokenServiceFactory() override;
// BrowserContextKeyedServiceFactory implementation.
KeyedService* BuildServiceInstanceFor(
content::BrowserContext* context) const override;
DISALLOW_COPY_AND_ASSIGN(ProfileOAuth2TokenServiceFactory);
};
#endif // CHROME_BROWSER_SIGNIN_PROFILE_OAUTH2_TOKEN_SERVICE_FACTORY_H_
|