| Index: chrome/browser/password_manager/password_store_x_unittest.cc
|
| diff --git a/chrome/browser/password_manager/password_store_x_unittest.cc b/chrome/browser/password_manager/password_store_x_unittest.cc
|
| index 721368d58d0ad0852be7650ebe98230a35492aaa..991bac8ce25aafa881e9ccba570853d0df37b98b 100644
|
| --- a/chrome/browser/password_manager/password_store_x_unittest.cc
|
| +++ b/chrome/browser/password_manager/password_store_x_unittest.cc
|
| @@ -475,7 +475,8 @@ TEST_P(PasswordStoreXTest, WDSMigrationAlreadyDone) {
|
|
|
| // 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<PasswordStoreX> store(
|
| @@ -508,7 +509,8 @@ TEST_P(PasswordStoreXTest, WDSMigrationAlreadyDone) {
|
| TEST_P(PasswordStoreXTest, Notifications) {
|
| // Pretend 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<PasswordStoreX> store(
|
| @@ -646,7 +648,8 @@ TEST_P(PasswordStoreXTest, NativeMigration) {
|
|
|
| // Pretend that the WDS migration has already taken place.
|
| profile_->GetPrefs()->RegisterBooleanPref(prefs::kLoginDatabaseMigrated,
|
| - true);
|
| + true,
|
| + false /* don't sync pref */);
|
|
|
| // Initializing the PasswordStore shouldn't trigger a native migration (yet).
|
| scoped_refptr<PasswordStoreX> store(
|
|
|