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

Unified Diff: chrome/browser/chromeos/input_method/input_method_manager.cc

Issue 10109001: Replace all LOGs in input_method/, except two user-facing errors, to DVLOG(1). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 8 years, 8 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/input_method/input_method_manager.cc
diff --git a/chrome/browser/chromeos/input_method/input_method_manager.cc b/chrome/browser/chromeos/input_method/input_method_manager.cc
index 54ae26b921a22f86e156cb4c5cf8d3476ae3808c..1afd41303bdd260df7fb2f3661a96a4cf5944556 100644
--- a/chrome/browser/chromeos/input_method/input_method_manager.cc
+++ b/chrome/browser/chromeos/input_method/input_method_manager.cc
@@ -19,7 +19,7 @@ void InputMethodManager::Initialize() {
InputMethodManagerImpl* impl = new InputMethodManagerImpl;
impl->Init();
g_input_method_manager = impl;
- VLOG(1) << "InputMethodManager initialized";
+ DVLOG(1) << "InputMethodManager initialized";
}
// static
@@ -27,14 +27,14 @@ void InputMethodManager::InitializeForTesting(
InputMethodManager* mock_manager) {
DCHECK(!g_input_method_manager);
g_input_method_manager = mock_manager;
- VLOG(1) << "InputMethodManager for testing initialized";
+ DVLOG(1) << "InputMethodManager for testing initialized";
}
// static
void InputMethodManager::Shutdown() {
delete g_input_method_manager;
g_input_method_manager = NULL;
- VLOG(1) << "InputMethodManager shutdown";
+ DVLOG(1) << "InputMethodManager shutdown";
}
// static

Powered by Google App Engine
This is Rietveld 408576698