| 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 #if defined(OS_ANDROID) | 28 #if defined(OS_ANDROID) |
| 29 // On Android, use the PR-specific resource IDs. | 29 // On Android, use the PR-specific resource IDs. |
| 30 const PaymentRequestData kPaymentRequestData[]{ | 30 const PaymentRequestData kPaymentRequestData[]{ |
| 31 {"americanExpressCC", "amex", IDR_AUTOFILL_PR_AMEX, IDS_AUTOFILL_CC_AMEX}, | 31 {"americanExpressCC", "amex", IDR_AUTOFILL_PR_AMEX, IDS_AUTOFILL_CC_AMEX}, |
| 32 {"dinersCC", "diners", IDR_AUTOFILL_PR_DINERS, IDS_AUTOFILL_CC_DINERS}, | 32 {"dinersCC", "diners", IDR_AUTOFILL_PR_DINERS, IDS_AUTOFILL_CC_DINERS}, |
| 33 {"discoverCC", "discover", IDR_AUTOFILL_PR_DISCOVER, | 33 {"discoverCC", "discover", IDR_AUTOFILL_PR_DISCOVER, |
| 34 IDS_AUTOFILL_CC_DISCOVER}, | 34 IDS_AUTOFILL_CC_DISCOVER}, |
| 35 {"jcbCC", "jcb", IDR_AUTOFILL_PR_JCB, IDS_AUTOFILL_CC_JCB}, | 35 {"jcbCC", "jcb", IDR_AUTOFILL_PR_JCB, IDS_AUTOFILL_CC_JCB}, |
| 36 {"masterCardCC", "mastercard", IDR_AUTOFILL_PR_MASTERCARD, | 36 {"masterCardCC", "mastercard", IDR_AUTOFILL_PR_MASTERCARD, |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 | 452 |
| 453 return re2::RE2::FullMatch(country_code, "^[A-Z]{2}$"); | 453 return re2::RE2::FullMatch(country_code, "^[A-Z]{2}$"); |
| 454 } | 454 } |
| 455 | 455 |
| 456 bool IsValidCountryCode(const base::string16& country_code) { | 456 bool IsValidCountryCode(const base::string16& country_code) { |
| 457 return IsValidCountryCode(base::UTF16ToUTF8(country_code)); | 457 return IsValidCountryCode(base::UTF16ToUTF8(country_code)); |
| 458 } | 458 } |
| 459 | 459 |
| 460 } // namespace data_util | 460 } // namespace data_util |
| 461 } // namespace autofill | 461 } // namespace autofill |
| OLD | NEW |