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

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

Issue 2877473002: Move autofill_regex_constants to core/common. (Closed)
Patch Set: Remove illegal dependency. Created 3 years, 7 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_
6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_
7
8 namespace autofill {
9
10 extern const char kAttentionIgnoredRe[];
11 extern const char kRegionIgnoredRe[];
12 extern const char kAddressNameIgnoredRe[];
13 extern const char kCompanyRe[];
14 extern const char kAddressLine1Re[];
15 extern const char kAddressLine1LabelRe[];
16 extern const char kAddressLine2Re[];
17 extern const char kAddressLine2LabelRe[];
18 extern const char kAddressLinesExtraRe[];
19 extern const char kAddressLookupRe[];
20 extern const char kCountryRe[];
21 extern const char kCountryLocationRe[];
22 extern const char kZipCodeRe[];
23 extern const char kZip4Re[];
24 extern const char kCityRe[];
25 extern const char kStateRe[];
26 extern const char kNameOnCardRe[];
27 extern const char kNameOnCardContextualRe[];
28 extern const char kCardNumberRe[];
29 extern const char kCardCvcRe[];
30 extern const char kCardTypeRe[];
31 extern const char kExpirationMonthRe[];
32 extern const char kExpirationYearRe[];
33 extern const char kExpirationDate2DigitYearRe[];
34 extern const char kExpirationDate4DigitYearRe[];
35 extern const char kExpirationDateRe[];
36 extern const char kCardIgnoredRe[];
37 extern const char kGiftCardRe[];
38 extern const char kDebitGiftCardRe[];
39 extern const char kDebitCardRe[];
40 extern const char kEmailRe[];
41 extern const char kNameIgnoredRe[];
42 extern const char kNameRe[];
43 extern const char kNameSpecificRe[];
44 extern const char kFirstNameRe[];
45 extern const char kMiddleInitialRe[];
46 extern const char kMiddleNameRe[];
47 extern const char kLastNameRe[];
48 extern const char kPhoneRe[];
49 extern const char kCountryCodeRe[];
50 extern const char kAreaCodeNotextRe[];
51 extern const char kAreaCodeRe[];
52 extern const char kFaxRe[];
53 extern const char kPhonePrefixSeparatorRe[];
54 extern const char kPhoneSuffixSeparatorRe[];
55 extern const char kPhonePrefixRe[];
56 extern const char kPhoneSuffixRe[];
57 extern const char kPhoneExtensionRe[];
58
59 // Used to match field data that might be a UPI Virtual Payment Address.
60 // See:
61 // - http://crbug.com/702220
62 // - https://upipayments.co.in/virtual-payment-address-vpa/
63 extern const char kUPIVirtualPaymentAddressRe[];
64
65 } // namespace autofill
66
67 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_
OLDNEW
« no previous file with comments | « components/autofill/core/browser/address_field.cc ('k') | components/autofill/core/browser/autofill_regex_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698