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 06219a43732ad2a032a9615b831f2c1301d9fa0a..3cdd07322a93080749327be73edfacbaa5ccde67 100644 |
--- a/components/autofill/core/browser/webdata/autofill_webdata.h |
+++ b/components/autofill/core/browser/webdata/autofill_webdata.h |
@@ -61,7 +61,7 @@ class AutofillWebData { |
virtual void UpdateAutofillProfile(const AutofillProfile& profile) = 0; |
// Schedules a task to remove an Autofill profile from the web database. |
- // |guid| is the identifer of the profile to remove. |
+ // |guid| is the identifier of the profile to remove. |
virtual void RemoveAutofillProfile(const std::string& guid) = 0; |
// Initiates the request for local/server Autofill profiles. The method |
@@ -92,7 +92,7 @@ class AutofillWebData { |
virtual void UpdateCreditCard(const CreditCard& credit_card) = 0; |
// Schedules a task to remove a credit card from the web database. |
- // |guid| is identifer of the credit card to remove. |
+ // |guid| is identifier of the credit card to remove. |
virtual void RemoveCreditCard(const std::string& guid) = 0; |
// Initiates the request for local/server credit cards. The method |
@@ -117,6 +117,10 @@ class AutofillWebData { |
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; |
+ |
// Removes Autofill records from the database. |
virtual void RemoveAutofillDataModifiedBetween( |
const base::Time& delete_begin, const base::Time& delete_end) = 0; |