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

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

Issue 1090373002: Remove build step that escapes unicode in autofill_regex_constants.cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: also remove python script Created 5 years, 8 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
OLDNEW
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
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
OLDNEW
« no previous file with comments | « components/autofill/core/browser/BUILD.gn ('k') | components/autofill/core/browser/autofill_regex_constants.cc.utf8 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698