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

Side by Side Diff: components/autofill/core/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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698