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

Unified Diff: chrome/browser/profiles/profile_manager.cc

Issue 1072413003: Add foundation for trimming the AffiliationDatabase. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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/profiles/profile_manager.cc
diff --git a/chrome/browser/profiles/profile_manager.cc b/chrome/browser/profiles/profile_manager.cc
index 2e98ee413510fb3fda9d367005b1e23427fd0cf3..31a2358980a32a8220f3608adcffc874db207e31 100644
--- a/chrome/browser/profiles/profile_manager.cc
+++ b/chrome/browser/profiles/profile_manager.cc
@@ -1199,8 +1199,8 @@ void ProfileManager::FinishDeletingProfile(
PasswordStoreFactory::GetForProfile(
profile, ServiceAccessType::EXPLICIT_ACCESS).get();
if (password_store.get()) {
- password_store->RemoveLoginsCreatedBetween(base::Time(),
- base::Time::Max());
+ password_store->RemoveLoginsCreatedBetween(
+ base::Time(), base::Time::Max(), base::Closure());
}
}

Powered by Google App Engine
This is Rietveld 408576698