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

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

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
« no previous file with comments | « app/sql/meta_table.cc ('k') | chrome/browser/password_manager/login_database.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/password_manager/login_database.h
===================================================================
--- chrome/browser/password_manager/login_database.h (revision 51079)
+++ chrome/browser/password_manager/login_database.h (working copy)
@@ -10,10 +10,10 @@
#include "app/sql/connection.h"
#include "app/sql/meta_table.h"
+#include "base/file_path.h"
#include "base/string16.h"
#include "webkit/glue/password_form.h"
-class FilePath;
struct sqlite3;
// Interface to the database storage of login information, intended as a helper
@@ -69,6 +69,13 @@
// Loads the complete list of blacklist forms into |forms|.
bool GetBlacklistLogins(std::vector<webkit_glue::PasswordForm*>* forms) const;
+ // Deletes the login database file on disk, and creates a new, empty database.
+ // This can be used after migrating passwords to some other store, to ensure
+ // that SQLite doesn't leave fragments of passwords in the database file.
+ // Returns true on success; otherwise, whether the file was deleted and
+ // whether further use of this login database will succeed is unspecified.
+ bool DeleteAndRecreateDatabaseFile();
+
private:
// Returns an encrypted version of plain_text.
std::string EncryptedString(const string16& plain_text) const;
@@ -89,11 +96,11 @@
bool GetAllLoginsWithBlacklistSetting(
bool blacklisted, std::vector<webkit_glue::PasswordForm*>* forms) const;
+ FilePath db_path_;
mutable sql::Connection db_;
sql::MetaTable meta_table_;
DISALLOW_COPY_AND_ASSIGN(LoginDatabase);
};
-
#endif // CHROME_BROWSER_PASSWORD_MANAGER_LOGIN_DATABASE_H_
« no previous file with comments | « app/sql/meta_table.cc ('k') | chrome/browser/password_manager/login_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698