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

Unified Diff: components/password_manager/core/browser/test_password_store.h

Issue 2320763002: Support origin-based deletion for password store statistics (Closed)
Patch Set: Mac-specific code Created 4 years, 3 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/test_password_store.h
diff --git a/components/password_manager/core/browser/test_password_store.h b/components/password_manager/core/browser/test_password_store.h
index 4a272f7984952c1bd301744dc7ad221a50b3eca5..891d88c12cbf387a9dd83e90d2fac4e3dc5859ae 100644
--- a/components/password_manager/core/browser/test_password_store.h
+++ b/components/password_manager/core/browser/test_password_store.h
@@ -62,8 +62,10 @@ class TestPasswordStore : public PasswordStore {
base::Time delete_end) override;
PasswordStoreChangeList DisableAutoSignInForOriginsImpl(
const base::Callback<bool(const GURL&)>& origin_filter) override;
- bool RemoveStatisticsCreatedBetweenImpl(base::Time delete_begin,
- base::Time delete_end) override;
+ bool RemoveStatisticsByOriginAndTimeImpl(
+ const base::Callback<bool(const GURL&)>& origin_filter,
+ base::Time delete_begin,
+ base::Time delete_end) override;
bool FillAutofillableLogins(
std::vector<std::unique_ptr<autofill::PasswordForm>>* forms) override;
bool FillBlacklistLogins(

Powered by Google App Engine
This is Rietveld 408576698