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

Unified Diff: chrome/browser/password_manager/password_store_proxy_mac.cc

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: chrome/browser/password_manager/password_store_proxy_mac.cc
diff --git a/chrome/browser/password_manager/password_store_proxy_mac.cc b/chrome/browser/password_manager/password_store_proxy_mac.cc
index 8de3c33234eaa5335014cf7eb29b2650f3ac9812..f7af8c9d182a18d280104134d95ecb757c1e408e 100644
--- a/chrome/browser/password_manager/password_store_proxy_mac.cc
+++ b/chrome/browser/password_manager/password_store_proxy_mac.cc
@@ -195,11 +195,12 @@ PasswordStoreProxyMac::DisableAutoSignInForOriginsImpl(
return GetBackend()->DisableAutoSignInForOriginsImpl(origin_filter);
}
-bool PasswordStoreProxyMac::RemoveStatisticsCreatedBetweenImpl(
+bool PasswordStoreProxyMac::RemoveStatisticsByOriginAndTimeImpl(
+ const base::Callback<bool(const GURL&)>& origin_filter,
base::Time delete_begin,
base::Time delete_end) {
- return GetBackend()->RemoveStatisticsCreatedBetweenImpl(delete_begin,
- delete_end);
+ return GetBackend()->RemoveStatisticsByOriginAndTimeImpl(
+ origin_filter, delete_begin, delete_end);
}
std::vector<std::unique_ptr<autofill::PasswordForm>>

Powered by Google App Engine
This is Rietveld 408576698