| Index: chrome/browser/password_manager/password_store_factory.h
|
| diff --git a/chrome/browser/password_manager/password_store_factory.h b/chrome/browser/password_manager/password_store_factory.h
|
| index 631fc7afded03e2820fdf62519c964529afa8779..6c4ea3026f5c3de53e77e85f55954d9abd4aeceb 100644
|
| --- a/chrome/browser/password_manager/password_store_factory.h
|
| +++ b/chrome/browser/password_manager/password_store_factory.h
|
| @@ -24,7 +24,7 @@ typedef int LocalProfileId;
|
| // Singleton that owns all PasswordStores and associates them with
|
| // Profiles. Listens for the Profile's destruction notification and cleans up
|
| // the associated PasswordStore.
|
| -class PasswordStoreFactory : public RefcountedProfileKeyedServiceFactory {
|
| +class PasswordStoreFactory : public RefcountedBrowserContextKeyedServiceFactory {
|
| public:
|
| static scoped_refptr<PasswordStore> GetForProfile(
|
| Profile* profile, Profile::ServiceAccessType set);
|
| @@ -41,8 +41,8 @@ class PasswordStoreFactory : public RefcountedProfileKeyedServiceFactory {
|
| LocalProfileId GetLocalProfileId(PrefService* prefs) const;
|
| #endif
|
|
|
| - // ProfileKeyedServiceFactory:
|
| - virtual scoped_refptr<RefcountedProfileKeyedService> BuildServiceInstanceFor(
|
| + // BrowserContextKeyedServiceFactory:
|
| + virtual scoped_refptr<RefcountedBrowserContextKeyedService> BuildServiceInstanceFor(
|
| content::BrowserContext* context) const OVERRIDE;
|
| virtual void RegisterUserPrefs(
|
| user_prefs::PrefRegistrySyncable* registry) OVERRIDE;
|
|
|