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

Side by Side Diff: components/autofill/browser/autofill_regex_constants.cc.utf8

Issue 12434004: Move remaining Autofill code to //components/autofill. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix long lines Created 7 years, 9 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 // This file contains UTF8 strings that we want as char arrays. To avoid 5 // This file contains UTF8 strings that we want as char arrays. To avoid
6 // different compilers, we use a script to convert the UTF8 strings into 6 // different compilers, we use a script to convert the UTF8 strings into
7 // numeric literals (\x##). 7 // numeric literals (\x##).
8 8
9 #include "chrome/browser/autofill/autofill_regex_constants.h" 9 #include "components/autofill/browser/autofill_regex_constants.h"
10 10
11 namespace autofill { 11 namespace autofill {
12 12
13 ///////////////////////////////////////////////////////////////////////////// 13 /////////////////////////////////////////////////////////////////////////////
14 // address_field.cc 14 // address_field.cc
15 ///////////////////////////////////////////////////////////////////////////// 15 /////////////////////////////////////////////////////////////////////////////
16 const char kAttentionIgnoredRe[] = "attention|attn"; 16 const char kAttentionIgnoredRe[] = "attention|attn";
17 const char kRegionIgnoredRe[] = 17 const char kRegionIgnoredRe[] =
18 "province|region|other" 18 "province|region|other"
19 "|provincia" // es 19 "|provincia" // es
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 "prefix|exchange" 284 "prefix|exchange"
285 "|preselection" // fr-FR 285 "|preselection" // fr-FR
286 "|ddd"; // pt-BR, pt-PT 286 "|ddd"; // pt-BR, pt-PT
287 const char kPhoneSuffixRe[] = 287 const char kPhoneSuffixRe[] =
288 "suffix"; 288 "suffix";
289 const char kPhoneExtensionRe[] = 289 const char kPhoneExtensionRe[] =
290 "\\bext|ext\\b|extension" 290 "\\bext|ext\\b|extension"
291 "|ramal"; // pt-BR, pt-PT 291 "|ramal"; // pt-BR, pt-PT
292 292
293 } // namespace autofill 293 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/browser/autofill_regex_constants.h ('k') | components/autofill/browser/autofill_regexes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698