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

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

Issue 13888008: Fix for forms with more than three address lines getting partially Autofilled (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review revisions. Created 7 years, 8 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
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 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
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_
OLDNEW
« no previous file with comments | « components/autofill/browser/address_field.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