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

Side by Side Diff: base/i18n/character_encoding.cc

Issue 2578003002: Move |GetCanonicalEncodingNameByAliasName| to base/i18n (Closed)
Patch Set: rebased Created 3 years, 11 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
« no previous file with comments | « base/i18n/character_encoding.h ('k') | base/i18n/character_encoding_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/i18n/character_encoding.h"
6
7 #include "base/macros.h"
8 #include "third_party/icu/source/common/unicode/ucnv.h"
9
10 namespace base {
11 namespace {
12
13 // An array of all supported canonical encoding names.
14 const char* const kCanonicalEncodingNames[] = {
15 "Big5", "EUC-JP", "EUC-KR", "gb18030",
16 "GBK", "IBM866", "ISO-2022-JP", "ISO-8859-10",
17 "ISO-8859-13", "ISO-8859-14", "ISO-8859-15", "ISO-8859-16",
18 "ISO-8859-2", "ISO-8859-3", "ISO-8859-4", "ISO-8859-5",
19 "ISO-8859-6", "ISO-8859-7", "ISO-8859-8", "ISO-8859-8-I",
20 "KOI8-R", "KOI8-U", "macintosh", "Shift_JIS",
21 "UTF-16LE", "UTF-8", "windows-1250", "windows-1251",
22 "windows-1252", "windows-1253", "windows-1254", "windows-1255",
23 "windows-1256", "windows-1257", "windows-1258", "windows-874"};
24
25 } // namespace
26
27 const char* GetCanonicalEncodingNameByAliasName(const std::string& alias_name) {
28 for (auto& encoding_name : kCanonicalEncodingNames) {
29 if (alias_name == encoding_name)
30 return encoding_name;
31 }
32 static const char* kStandards[3] = {"HTML", "MIME", "IANA"};
33 for (auto& standard : kStandards) {
34 UErrorCode error_code = U_ZERO_ERROR;
35 const char* canonical_name =
36 ucnv_getStandardName(alias_name.c_str(), standard, &error_code);
37 if (U_SUCCESS(error_code) && canonical_name)
38 return canonical_name;
39 }
40 return nullptr;
41 }
42 } // namespace base
OLDNEW
« no previous file with comments | « base/i18n/character_encoding.h ('k') | base/i18n/character_encoding_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698