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

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

Issue 2626843004: [Payments] Add billing_address_id and has_converted to autofill_table (Closed)
Patch Set: Created 3 years, 11 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..88d0f1c8a7f48faecad8a9ea74b88bcc85d2d63b 100644
--- a/components/autofill/core/browser/webdata/autofill_webdata.h
+++ b/components/autofill/core/browser/webdata/autofill_webdata.h
@@ -110,14 +110,10 @@ class AutofillWebData {
virtual void MaskServerCreditCard(const std::string& id) = 0;
// Updates the use count and last use date for a server card (masked or not).
please use gerrit instead 2017/01/11 19:23:03 Update the comment, please.
sebsg 2017/01/12 15:36:31 Done.
- virtual void UpdateServerCardUsageStats(const CreditCard& credit_card) = 0;
+ virtual void UpdateServerCardMetadata(const CreditCard& credit_card) = 0;
// Updates the use count and last use date for a server address.
please use gerrit instead 2017/01/11 19:23:03 Update the comment please.
sebsg 2017/01/12 15:36:31 Done.
- 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)
+ virtual void UpdateServerAddressMetadata(const AutofillProfile& profile)
= 0;
// Removes Autofill records from the database.

Powered by Google App Engine
This is Rietveld 408576698