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

Unified Diff: chrome/browser/chromeos/login/keyboard_switch_menu.cc

Issue 4011001: Convert LOG(INFO) to VLOG(1) - chrome/browser/chromeos/login/.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 2 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
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
« no previous file with comments | « chrome/browser/chromeos/login/issue_response_handler.cc ('k') | chrome/browser/chromeos/login/login_screen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698