| Index: chrome/browser/chromeos/system_logs/touch_log_source.cc
|
| diff --git a/chrome/browser/chromeos/system_logs/touch_log_source.cc b/chrome/browser/chromeos/system_logs/touch_log_source.cc
|
| index f7a077ed20b985ff6eb217334c3ad746c062ffec..e39e19cd3b36e3e3749d13cc9c8f68a8b5b74e85 100644
|
| --- a/chrome/browser/chromeos/system_logs/touch_log_source.cc
|
| +++ b/chrome/browser/chromeos/system_logs/touch_log_source.cc
|
| @@ -31,16 +31,16 @@ void GetTouchLogs(system_logs::SystemLogsResponse* response) {
|
|
|
| std::vector<std::pair<std::string, CommandLine> > commands;
|
| CommandLine command =
|
| - CommandLine(base::FilePath("/opt/google/touchpad/tpcontrol"));
|
| - command.AppendArg("status");
|
| + 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/touchpad/generate_userfeedback"));
|
| + 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/touchscreen/touchscreen_feedback"));
|
| + base::FilePath("/opt/google/input/evdev_feedback"));
|
| commands.push_back(
|
| std::make_pair("hack-33025-touchscreen_activity", command));
|
|
|
|
|