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

Unified Diff: components/password_manager/core/browser/password_store_default_unittest.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: components/password_manager/core/browser/password_store_default_unittest.cc
diff --git a/components/password_manager/core/browser/password_store_default_unittest.cc b/components/password_manager/core/browser/password_store_default_unittest.cc
index 324b783202da0755d8df7357325b6e96527e0101..791c8c5906d0e9b953cc8bc94247e48f6b04344d 100644
--- a/components/password_manager/core/browser/password_store_default_unittest.cc
+++ b/components/password_manager/core/browser/password_store_default_unittest.cc
@@ -247,7 +247,8 @@ TEST_F(PasswordStoreDefaultTest, OperationsOnABadDatabaseSilentlyFail) {
// Delete one login; a range of logins.
bad_store->RemoveLogin(*form);
base::MessageLoop::current()->RunUntilIdle();
- bad_store->RemoveLoginsCreatedBetween(base::Time(), base::Time::Max());
+ bad_store->RemoveLoginsCreatedBetween(base::Time(), base::Time::Max(),
+ base::Closure());
base::MessageLoop::current()->RunUntilIdle();
bad_store->RemoveLoginsSyncedBetween(base::Time(), base::Time::Max());
base::MessageLoop::current()->RunUntilIdle();

Powered by Google App Engine
This is Rietveld 408576698