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

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

Issue 2866023: Linux: delete the unencrypted login database file after a successful password migration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 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/login_database.cc
===================================================================
--- chrome/browser/password_manager/login_database.cc (revision 51079)
+++ chrome/browser/password_manager/login_database.cc (working copy)
@@ -10,6 +10,7 @@
#include "app/sql/statement.h"
#include "app/sql/transaction.h"
#include "base/file_path.h"
+#include "base/file_util.h"
#include "base/histogram.h"
#include "base/logging.h"
#include "base/time.h"
@@ -77,6 +78,9 @@
return false;
}
+ // Save the path for DeleteDatabaseFile().
+ db_path_ = db_path;
+
// If the file on disk is an older database version, bring it up to date.
MigrateOldVersionsAsNeeded();
@@ -390,3 +394,11 @@
}
return s.Succeeded();
}
+
+bool LoginDatabase::DeleteAndRecreateDatabaseFile() {
+ DCHECK(db_.is_open());
+ meta_table_.Reset();
+ db_.Close();
+ file_util::Delete(db_path_, false);
+ return Init(db_path_);
+}
« no previous file with comments | « chrome/browser/password_manager/login_database.h ('k') | chrome/browser/password_manager/password_store_default.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698