| 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_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_ |
| 6 #define COMPONENTS_AUTOFILL_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[]; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 extern const char kAreaCodeRe[]; | 49 extern const char kAreaCodeRe[]; |
| 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_CORE_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_ |
| OLD | NEW |