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

Unified Diff: views/controls/menu/menu_controller.cc

Issue 3044043: Remove a deprecated wstring ToLower function. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: views Created 10 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/spellcheck_host.cc ('k') | views/controls/menu/menu_item_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/controls/menu/menu_controller.cc
diff --git a/views/controls/menu/menu_controller.cc b/views/controls/menu/menu_controller.cc
index 21a7708ee544128c8f39c8f41343f8b3068e8fb7..3d4936686c917c7987c61c8a20a003bd51d2fc8a 100644
--- a/views/controls/menu/menu_controller.cc
+++ b/views/controls/menu/menu_controller.cc
@@ -9,6 +9,7 @@
#include "base/i18n/rtl.h"
#include "base/keyboard_codes.h"
#include "base/time.h"
+#include "base/utf_string_conversions.h"
#include "gfx/canvas_skia.h"
#include "views/controls/button/menu_button.h"
#include "views/controls/menu/menu_scroll_view_container.h"
@@ -1537,7 +1538,7 @@ void MenuController::CloseSubmenu() {
bool MenuController::SelectByChar(wchar_t character) {
wchar_t char_array[1] = { character };
- wchar_t key = l10n_util::ToLower(char_array)[0];
+ wchar_t key = UTF16ToWide(l10n_util::ToLower(WideToUTF16(char_array)))[0];
MenuItemView* item = pending_state_.item;
if (!item->HasSubmenu() || !item->GetSubmenu()->IsShowing())
item = item->GetParentMenuItem();
@@ -1570,7 +1571,8 @@ bool MenuController::SelectByChar(wchar_t character) {
for (int i = 0; i < menu_item_count; ++i) {
MenuItemView* child = submenu->GetMenuItemAt(i);
if (!child->GetMnemonic() && child->IsEnabled()) {
- std::wstring lower_title = l10n_util::ToLower(child->GetTitle());
+ std::wstring lower_title = UTF16ToWide(
+ l10n_util::ToLower(WideToUTF16(child->GetTitle())));
if (child == pending_state_.item)
index_of_item = i;
if (lower_title.length() && lower_title[0] == key) {
« no previous file with comments | « chrome/browser/spellcheck_host.cc ('k') | views/controls/menu/menu_item_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698