| Index: chrome/browser/password_manager/native_backend_gnome_x.cc
|
| ===================================================================
|
| --- chrome/browser/password_manager/native_backend_gnome_x.cc (revision 117092)
|
| +++ chrome/browser/password_manager/native_backend_gnome_x.cc (working copy)
|
| @@ -416,7 +416,10 @@
|
|
|
| NativeBackendGnome::NativeBackendGnome(LocalProfileId id, PrefService* prefs)
|
| : profile_id_(id), prefs_(prefs) {
|
| - if (PasswordStoreX::PasswordsUseLocalProfileId(prefs)) {
|
| + // TODO(mdm): after a few more releases, remove the code which is now dead due
|
| + // to the true || here, and simplify this code. We don't do it yet to make it
|
| + // easier to revert if necessary.
|
| + if (true || PasswordStoreX::PasswordsUseLocalProfileId(prefs)) {
|
| app_string_ = GetProfileSpecificAppString();
|
| // We already did the migration previously. Don't try again.
|
| migrate_tried_ = true;
|
|
|