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

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

Issue 17392006: In components/autofill, move browser/ to core/browser/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to fix conflicts Created 7 years, 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_
6 #define COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_
7
8 namespace autofill {
9
10 extern const char kAttentionIgnoredRe[];
11 extern const char kRegionIgnoredRe[];
12 extern const char kCompanyRe[];
13 extern const char kAddressLine1Re[];
14 extern const char kAddressLine1LabelRe[];
15 extern const char kAddressLine2Re[];
16 extern const char kAddressLine2LabelRe[];
17 extern const char kAddressLinesExtraRe[];
18 extern const char kCountryRe[];
19 extern const char kZipCodeRe[];
20 extern const char kZip4Re[];
21 extern const char kCityRe[];
22 extern const char kStateRe[];
23 extern const char kAddressTypeSameAsRe[];
24 extern const char kAddressTypeUseMyRe[];
25 extern const char kBillingDesignatorRe[];
26 extern const char kShippingDesignatorRe[];
27 extern const char kNameOnCardRe[];
28 extern const char kNameOnCardContextualRe[];
29 extern const char kCardNumberRe[];
30 extern const char kCardCvcRe[];
31 extern const char kCardTypeRe[];
32 extern const char kExpirationMonthRe[];
33 extern const char kExpirationYearRe[];
34 extern const char kExpirationDate2DigitYearRe[];
35 extern const char kExpirationDateRe[];
36 extern const char kCardIgnoredRe[];
37 extern const char kGiftCardRe[];
38 extern const char kEmailRe[];
39 extern const char kNameIgnoredRe[];
40 extern const char kNameRe[];
41 extern const char kNameSpecificRe[];
42 extern const char kFirstNameRe[];
43 extern const char kMiddleInitialRe[];
44 extern const char kMiddleNameRe[];
45 extern const char kLastNameRe[];
46 extern const char kPhoneRe[];
47 extern const char kCountryCodeRe[];
48 extern const char kAreaCodeNotextRe[];
49 extern const char kAreaCodeRe[];
50 extern const char kFaxRe[];
51 extern const char kPhonePrefixSeparatorRe[];
52 extern const char kPhoneSuffixSeparatorRe[];
53 extern const char kPhonePrefixRe[];
54 extern const char kPhoneSuffixRe[];
55 extern const char kPhoneExtensionRe[];
56
57 } // namespace autofill
58
59 #endif // COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_REGEX_CONSTANTS_H_
OLDNEW
« no previous file with comments | « components/autofill/browser/autofill_profile_unittest.cc ('k') | components/autofill/browser/autofill_regex_constants.cc.utf8 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698