| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/core/browser/autofill_regex_constants.h" | 9 #include "components/autofill/core/browser/autofill_regex_constants.h" |
| 10 | 10 |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 "prefix|exchange" | 290 "prefix|exchange" |
| 291 "|preselection" // fr-FR | 291 "|preselection" // fr-FR |
| 292 "|ddd"; // pt-BR, pt-PT | 292 "|ddd"; // pt-BR, pt-PT |
| 293 const char kPhoneSuffixRe[] = | 293 const char kPhoneSuffixRe[] = |
| 294 "suffix"; | 294 "suffix"; |
| 295 const char kPhoneExtensionRe[] = | 295 const char kPhoneExtensionRe[] = |
| 296 "\\bext|ext\\b|extension" | 296 "\\bext|ext\\b|extension" |
| 297 "|ramal"; // pt-BR, pt-PT | 297 "|ramal"; // pt-BR, pt-PT |
| 298 | 298 |
| 299 } // namespace autofill | 299 } // namespace autofill |
| OLD | NEW |