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

Side by Side Diff: components/autofill/core/browser/autofill_regex_constants.h

Issue 1048363002: Autofill: Recognize more credit card date fields. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@autofill_exp
Patch Set: nit, rebase Created 5 years, 8 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 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 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_ 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_
6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_ 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_
7 7
8 namespace autofill { 8 namespace autofill {
9 9
10 extern const char kAttentionIgnoredRe[]; 10 extern const char kAttentionIgnoredRe[];
(...skipping 12 matching lines...) Expand all
23 extern const char kCityRe[]; 23 extern const char kCityRe[];
24 extern const char kStateRe[]; 24 extern const char kStateRe[];
25 extern const char kNameOnCardRe[]; 25 extern const char kNameOnCardRe[];
26 extern const char kNameOnCardContextualRe[]; 26 extern const char kNameOnCardContextualRe[];
27 extern const char kCardNumberRe[]; 27 extern const char kCardNumberRe[];
28 extern const char kCardCvcRe[]; 28 extern const char kCardCvcRe[];
29 extern const char kCardTypeRe[]; 29 extern const char kCardTypeRe[];
30 extern const char kExpirationMonthRe[]; 30 extern const char kExpirationMonthRe[];
31 extern const char kExpirationYearRe[]; 31 extern const char kExpirationYearRe[];
32 extern const char kExpirationDate2DigitYearRe[]; 32 extern const char kExpirationDate2DigitYearRe[];
33 extern const char kExpirationDate4DigitYearRe[];
33 extern const char kExpirationDateRe[]; 34 extern const char kExpirationDateRe[];
34 extern const char kCardIgnoredRe[]; 35 extern const char kCardIgnoredRe[];
35 extern const char kGiftCardRe[]; 36 extern const char kGiftCardRe[];
36 extern const char kDebitGiftCardRe[]; 37 extern const char kDebitGiftCardRe[];
37 extern const char kDebitCardRe[]; 38 extern const char kDebitCardRe[];
38 extern const char kEmailRe[]; 39 extern const char kEmailRe[];
39 extern const char kNameIgnoredRe[]; 40 extern const char kNameIgnoredRe[];
40 extern const char kNameRe[]; 41 extern const char kNameRe[];
41 extern const char kNameSpecificRe[]; 42 extern const char kNameSpecificRe[];
42 extern const char kFirstNameRe[]; 43 extern const char kFirstNameRe[];
43 extern const char kMiddleInitialRe[]; 44 extern const char kMiddleInitialRe[];
44 extern const char kMiddleNameRe[]; 45 extern const char kMiddleNameRe[];
45 extern const char kLastNameRe[]; 46 extern const char kLastNameRe[];
46 extern const char kPhoneRe[]; 47 extern const char kPhoneRe[];
47 extern const char kCountryCodeRe[]; 48 extern const char kCountryCodeRe[];
48 extern const char kAreaCodeNotextRe[]; 49 extern const char kAreaCodeNotextRe[];
49 extern const char kAreaCodeRe[]; 50 extern const char kAreaCodeRe[];
50 extern const char kFaxRe[]; 51 extern const char kFaxRe[];
51 extern const char kPhonePrefixSeparatorRe[]; 52 extern const char kPhonePrefixSeparatorRe[];
52 extern const char kPhoneSuffixSeparatorRe[]; 53 extern const char kPhoneSuffixSeparatorRe[];
53 extern const char kPhonePrefixRe[]; 54 extern const char kPhonePrefixRe[];
54 extern const char kPhoneSuffixRe[]; 55 extern const char kPhoneSuffixRe[];
55 extern const char kPhoneExtensionRe[]; 56 extern const char kPhoneExtensionRe[];
56 57
57 } // namespace autofill 58 } // namespace autofill
58 59
59 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_ 60 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698