Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(700)

Side by Side Diff: chrome/browser/signin/signin_manager_factory.h

Issue 15517005: Remove references to Profile from browser_context_keyed_service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase & style Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_SIGNIN_SIGNIN_MANAGER_FACTORY_H_ 5 #ifndef CHROME_BROWSER_SIGNIN_SIGNIN_MANAGER_FACTORY_H_
6 #define CHROME_BROWSER_SIGNIN_SIGNIN_MANAGER_FACTORY_H_ 6 #define CHROME_BROWSER_SIGNIN_SIGNIN_MANAGER_FACTORY_H_
7 7
8 #include "base/memory/singleton.h" 8 #include "base/memory/singleton.h"
9 #include "components/browser_context_keyed_service/browser_context_keyed_service _factory.h" 9 #include "components/browser_context_keyed_service/browser_context_keyed_service _factory.h"
10 10
11 class SigninManager; 11 class SigninManager;
12 class SigninManagerBase; 12 class SigninManagerBase;
13 class PrefRegistrySimple; 13 class PrefRegistrySimple;
14 class Profile; 14 class Profile;
15 15
16 // Singleton that owns all SigninManagers and associates them with 16 // Singleton that owns all SigninManagers and associates them with
17 // Profiles. Listens for the Profile's destruction notification and cleans up 17 // Profiles. Listens for the Profile's destruction notification and cleans up
18 // the associated SigninManager. 18 // the associated SigninManager.
19 class SigninManagerFactory : public ProfileKeyedServiceFactory { 19 class SigninManagerFactory : public BrowserContextKeyedServiceFactory {
20 public: 20 public:
21 21
22 #if defined(OS_CHROMEOS) 22 #if defined(OS_CHROMEOS)
23 // Returns the instance of SigninManager associated with this profile 23 // Returns the instance of SigninManager associated with this profile
24 // (creating one if none exists). Returns NULL if this profile cannot have a 24 // (creating one if none exists). Returns NULL if this profile cannot have a
25 // SigninManager (for example, if |profile| is incognito). 25 // SigninManager (for example, if |profile| is incognito).
26 static SigninManagerBase* GetForProfile(Profile* profile); 26 static SigninManagerBase* GetForProfile(Profile* profile);
27 27
28 // Returns the instance of SigninManager associated with this profile. Returns 28 // Returns the instance of SigninManager associated with this profile. Returns
29 // null if no SigninManager instance currently exists (will not create a new 29 // null if no SigninManager instance currently exists (will not create a new
30 // instance). 30 // instance).
31 static SigninManagerBase* GetForProfileIfExists(Profile* profile); 31 static SigninManagerBase* GetForProfileIfExists(Profile* profile);
32 #else 32 #else
33 // On non-ChromeOS platforms, the SigninManager the factory creates will be 33 // On non-ChromeOS platforms, the SigninManager the factory creates will be
34 // an instance of the extended SigninManager class. 34 // an instance of the extended SigninManager class.
35 static SigninManager* GetForProfile(Profile* profile); 35 static SigninManager* GetForProfile(Profile* profile);
36 static SigninManager* GetForProfileIfExists(Profile* profile); 36 static SigninManager* GetForProfileIfExists(Profile* profile);
37 #endif 37 #endif
38 38
39 // Returns an instance of the SigninManagerFactory singleton. 39 // Returns an instance of the SigninManagerFactory singleton.
40 static SigninManagerFactory* GetInstance(); 40 static SigninManagerFactory* GetInstance();
41 41
42 // Implementation of ProfileKeyedServiceFactory (public so tests can call it). 42 // Implementation of BrowserContextKeyedServiceFactory (public so tests
43 // can call it).
43 virtual void RegisterUserPrefs( 44 virtual void RegisterUserPrefs(
44 user_prefs::PrefRegistrySyncable* registry) OVERRIDE; 45 user_prefs::PrefRegistrySyncable* registry) OVERRIDE;
45 46
46 // Registers the browser-global prefs used by SigninManager. 47 // Registers the browser-global prefs used by SigninManager.
47 static void RegisterPrefs(PrefRegistrySimple* registry); 48 static void RegisterPrefs(PrefRegistrySimple* registry);
48 49
49 private: 50 private:
50 friend struct DefaultSingletonTraits<SigninManagerFactory>; 51 friend struct DefaultSingletonTraits<SigninManagerFactory>;
51 52
52 SigninManagerFactory(); 53 SigninManagerFactory();
53 virtual ~SigninManagerFactory(); 54 virtual ~SigninManagerFactory();
54 55
55 // ProfileKeyedServiceFactory: 56 // BrowserContextKeyedServiceFactory:
56 virtual ProfileKeyedService* BuildServiceInstanceFor( 57 virtual BrowserContextKeyedService* BuildServiceInstanceFor(
57 content::BrowserContext* profile) const OVERRIDE; 58 content::BrowserContext* profile) const OVERRIDE;
58 }; 59 };
59 60
60 #endif // CHROME_BROWSER_SIGNIN_SIGNIN_MANAGER_FACTORY_H_ 61 #endif // CHROME_BROWSER_SIGNIN_SIGNIN_MANAGER_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698