| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |