| Index: chrome/browser/chromeos/system_logs/touch_log_source_x11.cc
|
| 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 2846f808d87f253a2503d3996e42c6a2f426c960..fa27399ee4e82298f505d04b53d394bf50ca83e5 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));
|
|
|
|
|