autofill_regex_constants.h revision f2477e01787aa58f445919b809d89e252beef54f
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
8namespace autofill {
9
10extern const char kAttentionIgnoredRe[];
11extern const char kRegionIgnoredRe[];
12extern const char kCompanyRe[];
13extern const char kAddressLine1Re[];
14extern const char kAddressLine1LabelRe[];
15extern const char kAddressLine2Re[];
16extern const char kAddressLine2LabelRe[];
17extern const char kAddressLinesExtraRe[];
18extern const char kCountryRe[];
19extern const char kZipCodeRe[];
20extern const char kZip4Re[];
21extern const char kCityRe[];
22extern const char kStateRe[];
23extern const char kNameOnCardRe[];
24extern const char kNameOnCardContextualRe[];
25extern const char kCardNumberRe[];
26extern const char kCardCvcRe[];
27extern const char kCardTypeRe[];
28extern const char kExpirationMonthRe[];
29extern const char kExpirationYearRe[];
30extern const char kExpirationDate2DigitYearRe[];
31extern const char kExpirationDateRe[];
32extern const char kCardIgnoredRe[];
33extern const char kGiftCardRe[];
34extern const char kEmailRe[];
35extern const char kNameIgnoredRe[];
36extern const char kNameRe[];
37extern const char kNameSpecificRe[];
38extern const char kFirstNameRe[];
39extern const char kMiddleInitialRe[];
40extern const char kMiddleNameRe[];
41extern const char kLastNameRe[];
42extern const char kPhoneRe[];
43extern const char kCountryCodeRe[];
44extern const char kAreaCodeNotextRe[];
45extern const char kAreaCodeRe[];
46extern const char kFaxRe[];
47extern const char kPhonePrefixSeparatorRe[];
48extern const char kPhoneSuffixSeparatorRe[];
49extern const char kPhonePrefixRe[];
50extern const char kPhoneSuffixRe[];
51extern const char kPhoneExtensionRe[];
52
53}  // namespace autofill
54
55#endif  // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_
56