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

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

Issue 8052024: Autofill: Ignore gift cards when filling credit card info (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 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
« no previous file with comments | « no previous file | chrome/browser/autofill/autofill_regex_constants.cc.utf8 » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 CHROME_BROWSER_AUTOFILL_AUTOFILL_REGEX_CONSTANTS_H_ 5 #ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_REGEX_CONSTANTS_H_
6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_REGEX_CONSTANTS_H_ 6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_REGEX_CONSTANTS_H_
7 7
8 namespace autofill { 8 namespace autofill {
9 9
10 extern const char kAttentionIgnoredRe[]; 10 extern const char kAttentionIgnoredRe[];
(...skipping 15 matching lines...) Expand all
26 extern const char kShippingDesignatorRe[]; 26 extern const char kShippingDesignatorRe[];
27 extern const char kNameOnCardRe[]; 27 extern const char kNameOnCardRe[];
28 extern const char kNameOnCardContextualRe[]; 28 extern const char kNameOnCardContextualRe[];
29 extern const char kCardNumberRe[]; 29 extern const char kCardNumberRe[];
30 extern const char kCardCvcRe[]; 30 extern const char kCardCvcRe[];
31 extern const char kExpirationMonthRe[]; 31 extern const char kExpirationMonthRe[];
32 extern const char kExpirationYearRe[]; 32 extern const char kExpirationYearRe[];
33 extern const char kExpirationDate2DigitYearRe[]; 33 extern const char kExpirationDate2DigitYearRe[];
34 extern const char kExpirationDateRe[]; 34 extern const char kExpirationDateRe[];
35 extern const char kCardIgnoredRe[]; 35 extern const char kCardIgnoredRe[];
36 extern const char kGiftCardRe[];
36 extern const char kEmailRe[]; 37 extern const char kEmailRe[];
37 extern const char kNameIgnoredRe[]; 38 extern const char kNameIgnoredRe[];
38 extern const char kNameRe[]; 39 extern const char kNameRe[];
39 extern const char kNameSpecificRe[]; 40 extern const char kNameSpecificRe[];
40 extern const char kFirstNameRe[]; 41 extern const char kFirstNameRe[];
41 extern const char kMiddleInitialRe[]; 42 extern const char kMiddleInitialRe[];
42 extern const char kMiddleNameRe[]; 43 extern const char kMiddleNameRe[];
43 extern const char kLastNameRe[]; 44 extern const char kLastNameRe[];
44 extern const char kPhoneRe[]; 45 extern const char kPhoneRe[];
45 extern const char kCountryCodeRe[]; 46 extern const char kCountryCodeRe[];
46 extern const char kAreaCodeNotextRe[]; 47 extern const char kAreaCodeNotextRe[];
47 extern const char kAreaCodeRe[]; 48 extern const char kAreaCodeRe[];
48 extern const char kFaxRe[]; 49 extern const char kFaxRe[];
49 extern const char kPhonePrefixSeparatorRe[]; 50 extern const char kPhonePrefixSeparatorRe[];
50 extern const char kPhoneSuffixSeparatorRe[]; 51 extern const char kPhoneSuffixSeparatorRe[];
51 extern const char kPhonePrefixRe[]; 52 extern const char kPhonePrefixRe[];
52 extern const char kPhoneSuffixRe[]; 53 extern const char kPhoneSuffixRe[];
53 extern const char kPhoneExtensionRe[]; 54 extern const char kPhoneExtensionRe[];
54 55
55 } // namespace autofill 56 } // namespace autofill
56 57
57 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_REGEX_CONSTANTS_H_ 58 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_REGEX_CONSTANTS_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/autofill/autofill_regex_constants.cc.utf8 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698