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

Unified Diff: components/autofill/core/browser/webdata/autofill_wallet_metadata_syncable_service.cc

Issue 2626843004: [Payments] Add billing_address_id and has_converted to autofill_table (Closed)
Patch Set: Fixed android compile failure in test 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_wallet_metadata_syncable_service.cc
diff --git a/components/autofill/core/browser/webdata/autofill_wallet_metadata_syncable_service.cc b/components/autofill/core/browser/webdata/autofill_wallet_metadata_syncable_service.cc
index 57dabb744cba4af43f925fa209661ee0df6c3f1e..5e3dc44b98625671486b7643270b3431d6a56317 100644
--- a/components/autofill/core/browser/webdata/autofill_wallet_metadata_syncable_service.cc
+++ b/components/autofill/core/browser/webdata/autofill_wallet_metadata_syncable_service.cc
@@ -425,13 +425,13 @@ bool AutofillWalletMetadataSyncableService::GetLocalData(
bool AutofillWalletMetadataSyncableService::UpdateAddressStats(
const AutofillProfile& profile) {
return AutofillTable::FromWebDatabase(web_data_backend_->GetDatabase())
- ->UpdateServerAddressUsageStats(profile);
+ ->UpdateServerAddressMetadata(profile);
}
bool AutofillWalletMetadataSyncableService::UpdateCardStats(
const CreditCard& credit_card) {
return AutofillTable::FromWebDatabase(web_data_backend_->GetDatabase())
- ->UpdateServerCardUsageStats(credit_card);
+ ->UpdateServerCardMetadata(credit_card);
}
syncer::SyncError

Powered by Google App Engine
This is Rietveld 408576698