| OLD | NEW |
| 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 types to Payment Request API basic card payment | 25 // Mappings from Chrome card networks to Payment Request API basic card payment |
| 26 // spec types 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}, |
| 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 {"jcbCC", "jcb", IDR_AUTOFILL_CC_JCB, IDS_AUTOFILL_CC_JCB}, | 33 {"jcbCC", "jcb", IDR_AUTOFILL_CC_JCB, IDS_AUTOFILL_CC_JCB}, |
| 34 {"masterCardCC", "mastercard", IDR_AUTOFILL_CC_MASTERCARD, | 34 {"masterCardCC", "mastercard", IDR_AUTOFILL_CC_MASTERCARD, |
| 35 IDS_AUTOFILL_CC_MASTERCARD}, | 35 IDS_AUTOFILL_CC_MASTERCARD}, |
| 36 {"mirCC", "mir", IDR_AUTOFILL_CC_MIR, IDS_AUTOFILL_CC_MIR}, | 36 {"mirCC", "mir", IDR_AUTOFILL_CC_MIR, IDS_AUTOFILL_CC_MIR}, |
| (...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 | 432 |
| 433 return re2::RE2::FullMatch(country_code, "^[A-Z]{2}$"); | 433 return re2::RE2::FullMatch(country_code, "^[A-Z]{2}$"); |
| 434 } | 434 } |
| 435 | 435 |
| 436 bool IsValidCountryCode(const base::string16& country_code) { | 436 bool IsValidCountryCode(const base::string16& country_code) { |
| 437 return IsValidCountryCode(base::UTF16ToUTF8(country_code)); | 437 return IsValidCountryCode(base::UTF16ToUTF8(country_code)); |
| 438 } | 438 } |
| 439 | 439 |
| 440 } // namespace data_util | 440 } // namespace data_util |
| 441 } // namespace autofill | 441 } // namespace autofill |
| OLD | NEW |