| Index: chrome/browser/password_manager/password_store_default_unittest.cc | 
| diff --git a/chrome/browser/password_manager/password_store_default_unittest.cc b/chrome/browser/password_manager/password_store_default_unittest.cc | 
| index 19b70a1b29ff2b2aa15601ae78e8682048ec0ca7..f9e3d8d6825b8e293547cbe2d38dacf1d56a72fb 100644 | 
| --- a/chrome/browser/password_manager/password_store_default_unittest.cc | 
| +++ b/chrome/browser/password_manager/password_store_default_unittest.cc | 
| @@ -152,7 +152,8 @@ MATCHER(EmptyWDResult, "") { | 
| TEST_F(PasswordStoreDefaultTest, NonASCIIData) { | 
| // Prentend that the migration has already taken place. | 
| profile_->GetPrefs()->RegisterBooleanPref(prefs::kLoginDatabaseMigrated, | 
| -                                            true); | 
| +                                            true, | 
| +                                            false /* don't sync pref */); | 
|  | 
| // Initializing the PasswordStore shouldn't trigger a migration. | 
| scoped_refptr<PasswordStoreDefault> store( | 
| @@ -397,7 +398,8 @@ TEST_F(PasswordStoreDefaultTest, MigrationAlreadyDone) { | 
|  | 
| // Prentend that the migration has already taken place. | 
| profile_->GetPrefs()->RegisterBooleanPref(prefs::kLoginDatabaseMigrated, | 
| -                                            true); | 
| +                                            true, | 
| +                                            false /* don't sync pref */); | 
|  | 
| // Initializing the PasswordStore shouldn't trigger a migration. | 
| scoped_refptr<PasswordStoreDefault> store( | 
| @@ -426,7 +428,8 @@ TEST_F(PasswordStoreDefaultTest, MigrationAlreadyDone) { | 
| TEST_F(PasswordStoreDefaultTest, Notifications) { | 
| // Prentend that the migration has already taken place. | 
| profile_->GetPrefs()->RegisterBooleanPref(prefs::kLoginDatabaseMigrated, | 
| -                                            true); | 
| +                                            true, | 
| +                                            false /* don't sync pref */); | 
|  | 
| // Initializing the PasswordStore shouldn't trigger a migration. | 
| scoped_refptr<PasswordStoreDefault> store( | 
|  |