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

Unified Diff: components/autofill/core/browser/webdata/autofill_webdata.h

Issue 947693002: Add use_count and use_date to unmasked server cards as well. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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/autofill/core/browser/webdata/autofill_webdata.h
diff --git a/components/autofill/core/browser/webdata/autofill_webdata.h b/components/autofill/core/browser/webdata/autofill_webdata.h
index b85c0ee6a153bcb719c6e052e1661e7892f371e7..16873579d971bd66d14266dcaa099d862b49cf52 100644
--- a/components/autofill/core/browser/webdata/autofill_webdata.h
+++ b/components/autofill/core/browser/webdata/autofill_webdata.h
@@ -107,6 +107,9 @@ class AutofillWebData {
const base::string16& full_number) = 0;
virtual void MaskServerCreditCard(const std::string& id) = 0;
+ // Updates the use count and last use date for an unmasked server card.
+ virtual void UpdateUnmaskedCardUsageStats(const CreditCard& credit_card) = 0;
+
// Removes Autofill records from the database.
virtual void RemoveAutofillDataModifiedBetween(
const base::Time& delete_begin, const base::Time& delete_end) = 0;

Powered by Google App Engine
This is Rietveld 408576698