OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/credit_card.h" | 5 #include "components/autofill/core/browser/credit_card.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <algorithm> | 10 #include <algorithm> |
(...skipping 14 matching lines...) Expand all Loading... |
25 #include "build/build_config.h" | 25 #include "build/build_config.h" |
26 #include "components/autofill/core/browser/autofill_data_util.h" | 26 #include "components/autofill/core/browser/autofill_data_util.h" |
27 #include "components/autofill/core/browser/autofill_experiments.h" | 27 #include "components/autofill/core/browser/autofill_experiments.h" |
28 #include "components/autofill/core/browser/autofill_field.h" | 28 #include "components/autofill/core/browser/autofill_field.h" |
29 #include "components/autofill/core/browser/autofill_type.h" | 29 #include "components/autofill/core/browser/autofill_type.h" |
30 #include "components/autofill/core/browser/validation.h" | 30 #include "components/autofill/core/browser/validation.h" |
31 #include "components/autofill/core/common/autofill_clock.h" | 31 #include "components/autofill/core/common/autofill_clock.h" |
32 #include "components/autofill/core/common/autofill_l10n_util.h" | 32 #include "components/autofill/core/common/autofill_l10n_util.h" |
33 #include "components/autofill/core/common/autofill_regexes.h" | 33 #include "components/autofill/core/common/autofill_regexes.h" |
34 #include "components/autofill/core/common/form_field_data.h" | 34 #include "components/autofill/core/common/form_field_data.h" |
35 #include "grit/components_scaled_resources.h" | 35 #include "components/grit/components_scaled_resources.h" |
36 #include "grit/components_strings.h" | 36 #include "components/strings/grit/components_strings.h" |
37 #include "third_party/icu/source/common/unicode/uloc.h" | 37 #include "third_party/icu/source/common/unicode/uloc.h" |
38 #include "third_party/icu/source/i18n/unicode/dtfmtsym.h" | 38 #include "third_party/icu/source/i18n/unicode/dtfmtsym.h" |
39 #include "ui/base/l10n/l10n_util.h" | 39 #include "ui/base/l10n/l10n_util.h" |
40 | 40 |
41 using base::ASCIIToUTF16; | 41 using base::ASCIIToUTF16; |
42 | 42 |
43 namespace autofill { | 43 namespace autofill { |
44 | 44 |
45 const base::char16 kMidlineEllipsis[] = { 0x0020, 0x0020, | 45 const base::char16 kMidlineEllipsis[] = { 0x0020, 0x0020, |
46 0x2022, 0x2006, | 46 0x2022, 0x2006, |
(...skipping 880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
927 const char kDinersCard[] = "dinersCC"; | 927 const char kDinersCard[] = "dinersCC"; |
928 const char kDiscoverCard[] = "discoverCC"; | 928 const char kDiscoverCard[] = "discoverCC"; |
929 const char kGenericCard[] = "genericCC"; | 929 const char kGenericCard[] = "genericCC"; |
930 const char kJCBCard[] = "jcbCC"; | 930 const char kJCBCard[] = "jcbCC"; |
931 const char kMasterCard[] = "masterCardCC"; | 931 const char kMasterCard[] = "masterCardCC"; |
932 const char kMirCard[] = "mirCC"; | 932 const char kMirCard[] = "mirCC"; |
933 const char kUnionPay[] = "unionPayCC"; | 933 const char kUnionPay[] = "unionPayCC"; |
934 const char kVisaCard[] = "visaCC"; | 934 const char kVisaCard[] = "visaCC"; |
935 | 935 |
936 } // namespace autofill | 936 } // namespace autofill |
OLD | NEW |