system_logs/touch_log_source: Updated path to log scripts

The path to feedback generation scripts has changed. This broke some
feedback reports. This CL updates the command line to generate touch
logs for feedback reports.

BUG=chromium:384454
TEST=file feedback and check submitted system_logs. Don't check
chrome://system, those logs are generated in a different way.

Review URL: https://codereview.chromium.org/335453008

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278301 0039d316-1c4b-4281-b951-d872f2087c98
parent 9f37dac7
...@@ -31,16 +31,16 @@ void GetTouchLogs(system_logs::SystemLogsResponse* response) { ...@@ -31,16 +31,16 @@ void GetTouchLogs(system_logs::SystemLogsResponse* response) {
std::vector<std::pair<std::string, CommandLine> > commands; std::vector<std::pair<std::string, CommandLine> > commands;
CommandLine command = CommandLine command =
CommandLine(base::FilePath("/opt/google/touchpad/tpcontrol")); CommandLine(base::FilePath("/opt/google/input/inputcontrol"));
command.AppendArg("status"); command.AppendArg("--status");
commands.push_back(std::make_pair("hack-33025-touchpad", command)); commands.push_back(std::make_pair("hack-33025-touchpad", command));
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)); commands.push_back(std::make_pair("hack-33025-touchpad_activity", command));
command = CommandLine( command = CommandLine(
base::FilePath("/opt/google/touchscreen/touchscreen_feedback")); base::FilePath("/opt/google/input/evdev_feedback"));
commands.push_back( commands.push_back(
std::make_pair("hack-33025-touchscreen_activity", command)); std::make_pair("hack-33025-touchscreen_activity", command));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment