| 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 #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[]; |
| 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 kAddressLinesExtraRe[]; | 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 kNameOnCardRe[]; | 23 extern const char kNameOnCardRe[]; |
| 24 extern const char kNameOnCardContextualRe[]; | 24 extern const char kNameOnCardContextualRe[]; |
| 25 extern const char kCardNumberRe[]; | 25 extern const char kCardNumberRe[]; |
| 26 extern const char kCardNumberPart1Re[]; |
| 27 extern const char kCardNumberPart2Re[]; |
| 28 extern const char kCardNumberPart3Re[]; |
| 29 extern const char kCardNumberPart4Re[]; |
| 26 extern const char kCardCvcRe[]; | 30 extern const char kCardCvcRe[]; |
| 27 extern const char kCardTypeRe[]; | 31 extern const char kCardTypeRe[]; |
| 28 extern const char kExpirationMonthRe[]; | 32 extern const char kExpirationMonthRe[]; |
| 29 extern const char kExpirationYearRe[]; | 33 extern const char kExpirationYearRe[]; |
| 30 extern const char kExpirationDate2DigitYearRe[]; | 34 extern const char kExpirationDate2DigitYearRe[]; |
| 31 extern const char kExpirationDateRe[]; | 35 extern const char kExpirationDateRe[]; |
| 32 extern const char kCardIgnoredRe[]; | 36 extern const char kCardIgnoredRe[]; |
| 33 extern const char kGiftCardRe[]; | 37 extern const char kGiftCardRe[]; |
| 34 extern const char kEmailRe[]; | 38 extern const char kEmailRe[]; |
| 35 extern const char kNameIgnoredRe[]; | 39 extern const char kNameIgnoredRe[]; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 46 extern const char kFaxRe[]; | 50 extern const char kFaxRe[]; |
| 47 extern const char kPhonePrefixSeparatorRe[]; | 51 extern const char kPhonePrefixSeparatorRe[]; |
| 48 extern const char kPhoneSuffixSeparatorRe[]; | 52 extern const char kPhoneSuffixSeparatorRe[]; |
| 49 extern const char kPhonePrefixRe[]; | 53 extern const char kPhonePrefixRe[]; |
| 50 extern const char kPhoneSuffixRe[]; | 54 extern const char kPhoneSuffixRe[]; |
| 51 extern const char kPhoneExtensionRe[]; | 55 extern const char kPhoneExtensionRe[]; |
| 52 | 56 |
| 53 } // namespace autofill | 57 } // namespace autofill |
| 54 | 58 |
| 55 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_ | 59 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_ |
| OLD | NEW |