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

Unified Diff: remoting/host/input_injector_linux.cc

Issue 86523005: Replace all usage of LOG(INFO) in Chromoting host with HOST_LOG to bypass the presubmit check. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Renaming LOG_INFO to HOST_LOG Created 7 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
Index: remoting/host/input_injector_linux.cc
diff --git a/remoting/host/input_injector_linux.cc b/remoting/host/input_injector_linux.cc
index 678216ddec12a32ac93a19a027022b4ddf875710..94dcbd321e36d0518d8e31712eed5c3ecf1afffd 100644
--- a/remoting/host/input_injector_linux.cc
+++ b/remoting/host/input_injector_linux.cc
@@ -14,8 +14,8 @@
#include "base/bind.h"
#include "base/compiler_specific.h"
#include "base/location.h"
-#include "base/logging.h"
#include "base/single_thread_task_runner.h"
+#include "remoting/base/logging.h"
#include "remoting/host/clipboard.h"
#include "remoting/proto/internal.pb.h"
#include "third_party/skia/include/core/SkPoint.h"
@@ -433,7 +433,7 @@ void InputInjectorLinux::Core::InitMouseButtonMap() {
XFreeDeviceList(devices);
if (!device_found) {
- LOG(INFO) << "Cannot find XTest device.";
+ HOST_LOG << "Cannot find XTest device.";
return;
}

Powered by Google App Engine
This is Rietveld 408576698