| Index: chrome/browser/chromeos/login/keyboard_switch_menu.cc
|
| ===================================================================
|
| --- chrome/browser/chromeos/login/keyboard_switch_menu.cc (revision 63306)
|
| +++ chrome/browser/chromeos/login/keyboard_switch_menu.cc (working copy)
|
| @@ -49,12 +49,11 @@
|
| std::wstring KeyboardSwitchMenu::GetCurrentKeyboardName() const {
|
| const int count = GetItemCount();
|
| for (int i = 0; i < count; ++i) {
|
| - if (IsItemCheckedAt(i)) {
|
| + if (IsItemCheckedAt(i))
|
| return UTF16ToWide(GetLabelAt(i));
|
| - }
|
| }
|
| - LOG(INFO) << "The input method menu is not ready yet. "
|
| - << "Show a language name that matches the hardware keyboard layout";
|
| + VLOG(1) << "The input method menu is not ready yet. Show a language name "
|
| + "that matches the hardware keyboard layout";
|
| KeyboardLibrary *library = CrosLibrary::Get()->GetKeyboardLibrary();
|
| const std::string keyboard_layout_id =
|
| library->GetHardwareKeyboardLayoutName();
|
|
|
| Property changes on: chrome/browser/chromeos/login/keyboard_switch_menu.cc
|
| ___________________________________________________________________
|
| Added: svn:eol-style
|
| + LF
|
|
|
|
|