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

Side by Side Diff: components/autofill/core/browser/autofill_data_util.cc

Issue 2906763005: Add support for Brazil Elo card in autofill. (Closed)
Patch Set: Created 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/autofill/core/browser/autofill_data_util.h" 5 #include "components/autofill/core/browser/autofill_data_util.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/i18n/char_iterator.h" 10 #include "base/i18n/char_iterator.h"
11 #include "base/strings/string_piece.h" 11 #include "base/strings/string_piece.h"
12 #include "base/strings/string_split.h" 12 #include "base/strings/string_split.h"
13 #include "base/strings/string_util.h" 13 #include "base/strings/string_util.h"
14 #include "base/strings/utf_string_conversions.h" 14 #include "base/strings/utf_string_conversions.h"
15 #include "components/autofill/core/browser/field_types.h" 15 #include "components/autofill/core/browser/field_types.h"
16 #include "components/grit/components_scaled_resources.h" 16 #include "components/grit/components_scaled_resources.h"
17 #include "components/strings/grit/components_strings.h" 17 #include "components/strings/grit/components_strings.h"
18 #include "third_party/icu/source/common/unicode/uscript.h" 18 #include "third_party/icu/source/common/unicode/uscript.h"
19 #include "third_party/re2/src/re2/re2.h" 19 #include "third_party/re2/src/re2/re2.h"
20 20
21 namespace autofill { 21 namespace autofill {
22 namespace data_util { 22 namespace data_util {
23 23
24 namespace { 24 namespace {
25 // Mappings from Chrome card networks to Payment Request API basic card payment 25 // Mappings from Chrome card networks to Payment Request API basic card payment
26 // spec networks and icons. Note that "generic" is not in the spec. 26 // spec networks and icons. Note that "generic" is not in the spec.
27 // https://w3c.github.io/webpayments-methods-card/#method-id 27 // https://w3c.github.io/webpayments-methods-card/#method-id
28 const PaymentRequestData kPaymentRequestData[]{ 28 const PaymentRequestData kPaymentRequestData[]{
29 {"americanExpressCC", "amex", IDR_AUTOFILL_CC_AMEX, IDS_AUTOFILL_CC_AMEX}, 29 {"americanExpressCC", "amex", IDR_AUTOFILL_CC_AMEX, IDS_AUTOFILL_CC_AMEX},
Mathieu 2017/05/26 13:48:32 you'll need to rebase, these are now constants
jiahuiguo 2017/05/26 19:44:10 Done.
30 {"dinersCC", "diners", IDR_AUTOFILL_CC_DINERS, IDS_AUTOFILL_CC_DINERS}, 30 {"dinersCC", "diners", IDR_AUTOFILL_CC_DINERS, IDS_AUTOFILL_CC_DINERS},
31 {"discoverCC", "discover", IDR_AUTOFILL_CC_DISCOVER, 31 {"discoverCC", "discover", IDR_AUTOFILL_CC_DISCOVER,
32 IDS_AUTOFILL_CC_DISCOVER}, 32 IDS_AUTOFILL_CC_DISCOVER},
33 {"eloCC", "elo", IDR_AUTOFILL_CC_ELO, IDS_AUTOFILL_CC_ELO},
33 {"jcbCC", "jcb", IDR_AUTOFILL_CC_JCB, IDS_AUTOFILL_CC_JCB}, 34 {"jcbCC", "jcb", IDR_AUTOFILL_CC_JCB, IDS_AUTOFILL_CC_JCB},
34 {"masterCardCC", "mastercard", IDR_AUTOFILL_CC_MASTERCARD, 35 {"masterCardCC", "mastercard", IDR_AUTOFILL_CC_MASTERCARD,
35 IDS_AUTOFILL_CC_MASTERCARD}, 36 IDS_AUTOFILL_CC_MASTERCARD},
36 {"mirCC", "mir", IDR_AUTOFILL_CC_MIR, IDS_AUTOFILL_CC_MIR}, 37 {"mirCC", "mir", IDR_AUTOFILL_CC_MIR, IDS_AUTOFILL_CC_MIR},
37 {"unionPayCC", "unionpay", IDR_AUTOFILL_CC_UNIONPAY, 38 {"unionPayCC", "unionpay", IDR_AUTOFILL_CC_UNIONPAY,
38 IDS_AUTOFILL_CC_UNION_PAY}, 39 IDS_AUTOFILL_CC_UNION_PAY},
39 {"visaCC", "visa", IDR_AUTOFILL_CC_VISA, IDS_AUTOFILL_CC_VISA}, 40 {"visaCC", "visa", IDR_AUTOFILL_CC_VISA, IDS_AUTOFILL_CC_VISA},
40 }; 41 };
41 const PaymentRequestData kGenericPaymentRequestData = { 42 const PaymentRequestData kGenericPaymentRequestData = {
42 "genericCC", "generic", IDR_AUTOFILL_CC_GENERIC, IDS_AUTOFILL_CC_GENERIC}; 43 "genericCC", "generic", IDR_AUTOFILL_CC_GENERIC, IDS_AUTOFILL_CC_GENERIC};
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 433
433 return re2::RE2::FullMatch(country_code, "^[A-Z]{2}$"); 434 return re2::RE2::FullMatch(country_code, "^[A-Z]{2}$");
434 } 435 }
435 436
436 bool IsValidCountryCode(const base::string16& country_code) { 437 bool IsValidCountryCode(const base::string16& country_code) {
437 return IsValidCountryCode(base::UTF16ToUTF8(country_code)); 438 return IsValidCountryCode(base::UTF16ToUTF8(country_code));
438 } 439 }
439 440
440 } // namespace data_util 441 } // namespace data_util
441 } // namespace autofill 442 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698