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

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

Issue 2109643003: Add billing address to masked server credit cards. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add version_66.sql to the build file. Created 4 years, 6 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 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;

Powered by Google App Engine
This is Rietveld 408576698