Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1114)

Unified Diff: chrome/browser/password_manager/native_backend_kwallet_x.cc

Issue 9186053: Linux: stop migrating old, shared passwords into the profile-specific password scheme. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/password_manager/native_backend_kwallet_x.cc
===================================================================
--- chrome/browser/password_manager/native_backend_kwallet_x.cc (revision 117092)
+++ chrome/browser/password_manager/native_backend_kwallet_x.cc (working copy)
@@ -39,7 +39,10 @@
prefs_(prefs),
kwallet_proxy_(NULL),
app_name_(l10n_util::GetStringUTF8(IDS_PRODUCT_NAME)) {
- 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)) {
folder_name_ = GetProfileSpecificFolderName();
// We already did the migration previously. Don't try again.
migrate_tried_ = true;

Powered by Google App Engine
This is Rietveld 408576698