Index: chrome/browser/password_manager/password_store_factory.cc |
diff --git a/chrome/browser/password_manager/password_store_factory.cc b/chrome/browser/password_manager/password_store_factory.cc |
index 70922f09ccffd8c361ef52a6422eb24f27bbda63..d2da9db8979b9d4a1ef8554ffee71da3a1706001 100644 |
--- a/chrome/browser/password_manager/password_store_factory.cc |
+++ b/chrome/browser/password_manager/password_store_factory.cc |
@@ -192,12 +192,12 @@ PasswordStoreFactory::BuildServiceInstanceFor(Profile* profile) const { |
return ps; |
} |
-void PasswordStoreFactory::RegisterUserPrefs(PrefService* prefs) { |
+void PasswordStoreFactory::RegisterUserPrefs(PrefServiceSyncable* prefs) { |
#if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && !defined(OS_ANDROID) \ |
&& defined(OS_POSIX) |
prefs->RegisterIntegerPref(prefs::kLocalProfileId, |
kInvalidLocalProfileId, |
- PrefService::UNSYNCABLE_PREF); |
+ PrefServiceSyncable::UNSYNCABLE_PREF); |
// Notice that the preprocessor conditions above are exactly those that will |
// result in using PasswordStoreX in CreatePasswordStore() below. |