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

Unified Diff: remoting/host/curtain_mode_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: 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
« no previous file with comments | « remoting/host/client_session.cc ('k') | remoting/host/desktop_resizer_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/curtain_mode_linux.cc
diff --git a/remoting/host/curtain_mode_linux.cc b/remoting/host/curtain_mode_linux.cc
index 9b54d05a633e90c5128ff87d2c4926b7880250f8..5e15180b1c5d87b63dddb37ea201956bb444e4ba 100644
--- a/remoting/host/curtain_mode_linux.cc
+++ b/remoting/host/curtain_mode_linux.cc
@@ -7,8 +7,8 @@
#include <X11/extensions/XInput.h>
#include "base/callback.h"
-#include "base/logging.h"
#include "base/single_thread_task_runner.h"
+#include "remoting/base/logging.h"
#include "remoting/host/client_session_control.h"
namespace remoting {
@@ -68,7 +68,7 @@ bool CurtainModeLinux::IsXvfbSession() {
found_xvfb_mouse = true;
} else if (strcmp(device_info->name, "Virtual core XTEST pointer") != 0) {
found_other_devices = true;
- LOG(INFO) << "Non Xvfb mouse found: " << device_info->name;
+ HOST_LOG << "Non Xvfb mouse found: " << device_info->name;
}
} else if (device_info->use == IsXExtensionKeyboard) {
if (strcmp(device_info->name, "Xvfb keyboard") == 0) {
@@ -76,21 +76,21 @@ bool CurtainModeLinux::IsXvfbSession() {
} else if (strcmp(device_info->name,
"Virtual core XTEST keyboard") != 0) {
found_other_devices = true;
- LOG(INFO) << "Non Xvfb keyboard found: " << device_info->name;
+ HOST_LOG << "Non Xvfb keyboard found: " << device_info->name;
}
} else if (device_info->use == IsXPointer) {
if (strcmp(device_info->name, "Virtual core pointer") != 0) {
found_other_devices = true;
- LOG(INFO) << "Non Xvfb mouse found: " << device_info->name;
+ HOST_LOG << "Non Xvfb mouse found: " << device_info->name;
}
} else if (device_info->use == IsXKeyboard) {
if (strcmp(device_info->name, "Virtual core keyboard") != 0) {
found_other_devices = true;
- LOG(INFO) << "Non Xvfb keyboard found: " << device_info->name;
+ HOST_LOG << "Non Xvfb keyboard found: " << device_info->name;
}
} else {
found_other_devices = true;
- LOG(INFO) << "Non Xvfb device found: " << device_info->name;
+ HOST_LOG << "Non Xvfb device found: " << device_info->name;
}
}
XFreeDeviceList(devices);
« no previous file with comments | « remoting/host/client_session.cc ('k') | remoting/host/desktop_resizer_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698