summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/system_logs/touch_log_source_x11.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/chromeos/system_logs/touch_log_source_x11.cc')
-rw-r--r--chrome/browser/chromeos/system_logs/touch_log_source_x11.cc11
1 files changed, 6 insertions, 5 deletions
diff --git a/chrome/browser/chromeos/system_logs/touch_log_source_x11.cc b/chrome/browser/chromeos/system_logs/touch_log_source_x11.cc
index 2846f80..fa27399 100644
--- a/chrome/browser/chromeos/system_logs/touch_log_source_x11.cc
+++ b/chrome/browser/chromeos/system_logs/touch_log_source_x11.cc
@@ -29,16 +29,17 @@ void GetTouchLogsX11(system_logs::SystemLogsResponse* response) {
(*response)[kHUDLogDataKey] = touch_log;
}
- std::vector<std::pair<std::string, CommandLine>> commands;
- CommandLine command =
- CommandLine(base::FilePath("/opt/google/input/inputcontrol"));
+ std::vector<std::pair<std::string, base::CommandLine>> commands;
+ base::CommandLine command =
+ base::CommandLine(base::FilePath("/opt/google/input/inputcontrol"));
command.AppendArg("--status");
commands.push_back(std::make_pair("hack-33025-touchpad", command));
- command = CommandLine(base::FilePath("/opt/google/input/cmt_feedback"));
+ command = base::CommandLine(base::FilePath("/opt/google/input/cmt_feedback"));
commands.push_back(std::make_pair("hack-33025-touchpad_activity", command));
- command = CommandLine(base::FilePath("/opt/google/input/evdev_feedback"));
+ command =
+ base::CommandLine(base::FilePath("/opt/google/input/evdev_feedback"));
commands.push_back(
std::make_pair("hack-33025-touchscreen_activity", command));