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

Side by Side Diff: chrome/browser/autofill/personal_data_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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_AUTOFILL_PERSONAL_DATA_MANAGER_FACTORY_H_ 5 #ifndef CHROME_BROWSER_AUTOFILL_PERSONAL_DATA_MANAGER_FACTORY_H_
6 #define CHROME_BROWSER_AUTOFILL_PERSONAL_DATA_MANAGER_FACTORY_H_ 6 #define CHROME_BROWSER_AUTOFILL_PERSONAL_DATA_MANAGER_FACTORY_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "components/browser_context_keyed_service/browser_context_keyed_service .h" 9 #include "components/browser_context_keyed_service/browser_context_keyed_service .h"
10 #include "components/browser_context_keyed_service/browser_context_keyed_service _factory.h" 10 #include "components/browser_context_keyed_service/browser_context_keyed_service _factory.h"
11 11
12 template <typename T> struct DefaultSingletonTraits; 12 template <typename T> struct DefaultSingletonTraits;
13 class Profile; 13 class Profile;
14 14
15 namespace autofill { 15 namespace autofill {
16 16
17 class PersonalDataManager; 17 class PersonalDataManager;
18 18
19 // A wrapper of PersonalDataManager so we can use it as a profiled keyed 19 // A wrapper of PersonalDataManager so we can use it as a profiled keyed
20 // service. This should only be subclassed in tests, e.g. to provide a mock 20 // service. This should only be subclassed in tests, e.g. to provide a mock
21 // PersonalDataManager. 21 // PersonalDataManager.
22 class PersonalDataManagerService : public ProfileKeyedService { 22 class PersonalDataManagerService : public BrowserContextKeyedService {
23 public: 23 public:
24 virtual PersonalDataManager* GetPersonalDataManager() = 0; 24 virtual PersonalDataManager* GetPersonalDataManager() = 0;
25 }; 25 };
26 26
27 // Singleton that owns all PersonalDataManagers and associates them with 27 // Singleton that owns all PersonalDataManagers and associates them with
28 // Profiles. 28 // Profiles.
29 // Listens for the Profile's destruction notification and cleans up the 29 // Listens for the Profile's destruction notification and cleans up the
30 // associated PersonalDataManager. 30 // associated PersonalDataManager.
31 class PersonalDataManagerFactory : public ProfileKeyedServiceFactory { 31 class PersonalDataManagerFactory : public BrowserContextKeyedServiceFactory {
32 public: 32 public:
33 // Returns the PersonalDataManager for |profile|, creating it if it is not 33 // Returns the PersonalDataManager for |profile|, creating it if it is not
34 // yet created. 34 // yet created.
35 static PersonalDataManager* GetForProfile(Profile* profile); 35 static PersonalDataManager* GetForProfile(Profile* profile);
36 36
37 static PersonalDataManagerFactory* GetInstance(); 37 static PersonalDataManagerFactory* GetInstance();
38 38
39 private: 39 private:
40 friend struct DefaultSingletonTraits<PersonalDataManagerFactory>; 40 friend struct DefaultSingletonTraits<PersonalDataManagerFactory>;
41 41
42 PersonalDataManagerFactory(); 42 PersonalDataManagerFactory();
43 virtual ~PersonalDataManagerFactory(); 43 virtual ~PersonalDataManagerFactory();
44 44
45 // ProfileKeyedServiceFactory: 45 // BrowserContextKeyedServiceFactory:
46 virtual ProfileKeyedService* BuildServiceInstanceFor( 46 virtual BrowserContextKeyedService* BuildServiceInstanceFor(
47 content::BrowserContext* profile) const OVERRIDE; 47 content::BrowserContext* profile) const OVERRIDE;
48 virtual content::BrowserContext* GetBrowserContextToUse( 48 virtual content::BrowserContext* GetBrowserContextToUse(
49 content::BrowserContext* context) const OVERRIDE; 49 content::BrowserContext* context) const OVERRIDE;
50 }; 50 };
51 51
52 } // namespace autofill 52 } // namespace autofill
53 53
54 #endif // CHROME_BROWSER_AUTOFILL_PERSONAL_DATA_MANAGER_FACTORY_H_ 54 #endif // CHROME_BROWSER_AUTOFILL_PERSONAL_DATA_MANAGER_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698