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

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

Issue 2514753002: Add Mir credit card support to autofill. (Closed)
Patch Set: Created 4 years, 1 month 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_syncable_service.cc
diff --git a/components/autofill/core/browser/webdata/autofill_wallet_syncable_service.cc b/components/autofill/core/browser/webdata/autofill_wallet_syncable_service.cc
index de80ecd17287539f133d04ca2ccb791e4db2bd36..acf60135b8f619710088ffaaa43b755f53b8c13a 100644
--- a/components/autofill/core/browser/webdata/autofill_wallet_syncable_service.cc
+++ b/components/autofill/core/browser/webdata/autofill_wallet_syncable_service.cc
@@ -42,6 +42,8 @@ const char* CardTypeFromWalletCardType(
return kJCBCard;
case sync_pb::WalletMaskedCreditCard::MASTER_CARD:
return kMasterCard;
+ case sync_pb::WalletMaskedCreditCard::MIR:
+ return kMirCard;
please use gerrit instead 2016/11/18 10:34:20 No need to add here.
case sync_pb::WalletMaskedCreditCard::VISA:
return kVisaCard;

Powered by Google App Engine
This is Rietveld 408576698