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

Unified Diff: chrome/browser/character_encoding.cc

Issue 11811: Get rid of ISO-8859-9 in the character encoding menu because it's now treated... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/browser.cc ('k') | chrome/browser/encoding_menu_controller_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/character_encoding.cc
===================================================================
--- chrome/browser/character_encoding.cc (revision 5923)
+++ chrome/browser/character_encoding.cc (working copy)
@@ -53,7 +53,6 @@
{ IDC_ENCODING_KOI8U, L"KOI8-U", IDS_ENCODING_CYRILLIC },
{ IDC_ENCODING_ISO88597, L"ISO-8859-7", IDS_ENCODING_GREEK },
{ IDC_ENCODING_WINDOWS1253, L"windows-1253", IDS_ENCODING_GREEK },
- { IDC_ENCODING_ISO88599, L"ISO-8859-9", IDS_ENCODING_TURKISH },
{ IDC_ENCODING_WINDOWS1254, L"windows-1254", IDS_ENCODING_TURKISH },
{ IDC_ENCODING_ISO88596, L"ISO-8859-6", IDS_ENCODING_ARABIC },
{ IDC_ENCODING_WINDOWS1256, L"windows-1256", IDS_ENCODING_ARABIC },
@@ -178,7 +177,6 @@
0,
IDC_ENCODING_ISO88597,
IDC_ENCODING_WINDOWS1253,
- IDC_ENCODING_ISO88599,
IDC_ENCODING_WINDOWS1254,
IDC_ENCODING_ISO88596,
IDC_ENCODING_WINDOWS1256,
@@ -220,7 +218,8 @@
int category_string_id) {
std::wstring category_name = l10n_util::GetString(category_string_id);
if (category_string_id != IDS_ENCODING_KOREAN &&
- category_string_id != IDS_ENCODING_THAI) {
+ category_string_id != IDS_ENCODING_THAI &&
+ category_string_id != IDS_ENCODING_TURKISH) {
return l10n_util::GetStringF(IDS_ENCODING_DISPLAY_TEMPLATE,
category_name,
encoding_name);
« no previous file with comments | « chrome/browser/browser.cc ('k') | chrome/browser/encoding_menu_controller_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698