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

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

Issue 2703673002: [Merge-57] Add billing_address_id and has_converted to autofill_table (Closed)
Patch Set: Created 3 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 919853d8b9abe844239e77a156fde2d13def265f..eb573874b12119f4b77cedc840ea87a332b65541 100644
--- a/components/autofill/core/browser/webdata/autofill_webdata.h
+++ b/components/autofill/core/browser/webdata/autofill_webdata.h
@@ -109,16 +109,11 @@ 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 a server card (masked or not).
- virtual void UpdateServerCardUsageStats(const CreditCard& credit_card) = 0;
+ // Updates the metadata for a server card (masked or not).
+ virtual void UpdateServerCardMetadata(const CreditCard& credit_card) = 0;
- // Updates the use count and last use date for a server address.
- virtual void UpdateServerAddressUsageStats(const AutofillProfile& profile)
- = 0;
-
- // Updates the billing address for a server card (masked or not).
- virtual void UpdateServerCardBillingAddress(const CreditCard& credit_card)
- = 0;
+ // Updates the metadata for a server address.
+ virtual void UpdateServerAddressMetadata(const AutofillProfile& profile) = 0;
// Removes Autofill records from the database.
virtual void RemoveAutofillDataModifiedBetween(

Powered by Google App Engine
This is Rietveld 408576698