| 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_split.h" | 11 #include "base/strings/string_split.h" |
| 12 #include "base/strings/string_util.h" | 12 #include "base/strings/string_util.h" |
| 13 #include "base/strings/utf_string_conversions.h" | 13 #include "base/strings/utf_string_conversions.h" |
| 14 #include "components/autofill/core/browser/field_types.h" | 14 #include "components/autofill/core/browser/field_types.h" |
| 15 #include "components/grit/components_scaled_resources.h" |
| 15 #include "third_party/icu/source/common/unicode/uscript.h" | 16 #include "third_party/icu/source/common/unicode/uscript.h" |
| 16 | 17 |
| 17 namespace autofill { | 18 namespace autofill { |
| 18 namespace data_util { | 19 namespace data_util { |
| 19 | 20 |
| 20 namespace { | 21 namespace { |
| 21 // Mappings from Chrome card types to Payment Request API basic card payment | 22 // Mappings from Chrome card types to Payment Request API basic card payment |
| 22 // spec types and icons. Note that "generic" is not in the spec. | 23 // spec types and icons. Note that "generic" is not in the spec. |
| 23 // https://w3c.github.io/webpayments-methods-card/#method-id | 24 // https://w3c.github.io/webpayments-methods-card/#method-id |
| 24 const PaymentRequestData kPaymentRequestData[]{ | 25 const PaymentRequestData kPaymentRequestData[]{ |
| (...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 for (const PaymentRequestData& data : kPaymentRequestData) { | 414 for (const PaymentRequestData& data : kPaymentRequestData) { |
| 414 if (basic_card_payment_type == data.basic_card_payment_type) { | 415 if (basic_card_payment_type == data.basic_card_payment_type) { |
| 415 return data.card_type; | 416 return data.card_type; |
| 416 } | 417 } |
| 417 } | 418 } |
| 418 return kGenericPaymentRequestData.card_type; | 419 return kGenericPaymentRequestData.card_type; |
| 419 } | 420 } |
| 420 | 421 |
| 421 } // namespace data_util | 422 } // namespace data_util |
| 422 } // namespace autofill | 423 } // namespace autofill |
| OLD | NEW |