OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_ | 5 #ifndef COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_ |
6 #define COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_ | 6 #define COMPONENTS_AUTOFILL_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[]; |
11 extern const char kRegionIgnoredRe[]; | 11 extern const char kRegionIgnoredRe[]; |
12 extern const char kCompanyRe[]; | 12 extern const char kCompanyRe[]; |
13 extern const char kAddressLine1Re[]; | 13 extern const char kAddressLine1Re[]; |
14 extern const char kAddressLine1LabelRe[]; | 14 extern const char kAddressLine1LabelRe[]; |
15 extern const char kAddressLine2Re[]; | 15 extern const char kAddressLine2Re[]; |
16 extern const char kAddressLine2LabelRe[]; | 16 extern const char kAddressLine2LabelRe[]; |
17 extern const char kAddressLine3Re[]; | 17 extern const char kAddressLinesExtraRe[]; |
18 extern const char kCountryRe[]; | 18 extern const char kCountryRe[]; |
19 extern const char kZipCodeRe[]; | 19 extern const char kZipCodeRe[]; |
20 extern const char kZip4Re[]; | 20 extern const char kZip4Re[]; |
21 extern const char kCityRe[]; | 21 extern const char kCityRe[]; |
22 extern const char kStateRe[]; | 22 extern const char kStateRe[]; |
23 extern const char kAddressTypeSameAsRe[]; | 23 extern const char kAddressTypeSameAsRe[]; |
24 extern const char kAddressTypeUseMyRe[]; | 24 extern const char kAddressTypeUseMyRe[]; |
25 extern const char kBillingDesignatorRe[]; | 25 extern const char kBillingDesignatorRe[]; |
26 extern const char kShippingDesignatorRe[]; | 26 extern const char kShippingDesignatorRe[]; |
27 extern const char kNameOnCardRe[]; | 27 extern const char kNameOnCardRe[]; |
(...skipping 22 matching lines...) Expand all Loading... |
50 extern const char kFaxRe[]; | 50 extern const char kFaxRe[]; |
51 extern const char kPhonePrefixSeparatorRe[]; | 51 extern const char kPhonePrefixSeparatorRe[]; |
52 extern const char kPhoneSuffixSeparatorRe[]; | 52 extern const char kPhoneSuffixSeparatorRe[]; |
53 extern const char kPhonePrefixRe[]; | 53 extern const char kPhonePrefixRe[]; |
54 extern const char kPhoneSuffixRe[]; | 54 extern const char kPhoneSuffixRe[]; |
55 extern const char kPhoneExtensionRe[]; | 55 extern const char kPhoneExtensionRe[]; |
56 | 56 |
57 } // namespace autofill | 57 } // namespace autofill |
58 | 58 |
59 #endif // COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_ | 59 #endif // COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_ |
OLD | NEW |