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

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

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 // 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 "components/autofill/browser/autofill_regex_constants.h" 9 #include "components/autofill/core/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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 "prefix|exchange" 285 "prefix|exchange"
286 "|preselection" // fr-FR 286 "|preselection" // fr-FR
287 "|ddd"; // pt-BR, pt-PT 287 "|ddd"; // pt-BR, pt-PT
288 const char kPhoneSuffixRe[] = 288 const char kPhoneSuffixRe[] =
289 "suffix"; 289 "suffix";
290 const char kPhoneExtensionRe[] = 290 const char kPhoneExtensionRe[] =
291 "\\bext|ext\\b|extension" 291 "\\bext|ext\\b|extension"
292 "|ramal"; // pt-BR, pt-PT 292 "|ramal"; // pt-BR, pt-PT
293 293
294 } // namespace autofill 294 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/core/browser/autofill_regex_constants.h ('k') | components/autofill/core/browser/autofill_regexes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698