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

Unified Diff: components/password_manager/core/browser/login_database.cc

Issue 347583004: PasswordStore refactoring. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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: components/password_manager/core/browser/login_database.cc
diff --git a/components/password_manager/core/browser/login_database.cc b/components/password_manager/core/browser/login_database.cc
index 90526e2ccb00952604fc9645334d8f0f25d98492..55cc5eca78b2e59d4c9b4130cc78a5738d7cb001 100644
--- a/components/password_manager/core/browser/login_database.cc
+++ b/components/password_manager/core/browser/login_database.cc
@@ -415,8 +415,8 @@ bool LoginDatabase::RemoveLogin(const PasswordForm& form) {
return s.Run();
}
-bool LoginDatabase::RemoveLoginsCreatedBetween(const base::Time delete_begin,
- const base::Time delete_end) {
+bool LoginDatabase::RemoveLoginsCreatedBetween(base::Time delete_begin,
+ base::Time delete_end) {
sql::Statement s(db_.GetCachedStatement(SQL_FROM_HERE,
"DELETE FROM logins WHERE "
"date_created >= ? AND date_created < ?"));

Powered by Google App Engine
This is Rietveld 408576698