From 05c41624a4ab77d4e766ec5de58211b7e38c86c7 Mon Sep 17 00:00:00 2001 From: "miletus@chromium.org" Date: Mon, 22 Apr 2013 22:39:11 +0000 Subject: Including touchscreen events report in feedback I think when we migrate from using src/platform/userfeedback/etc/sys_log_utils.sysinfo.lst to hard-coded entries in command_line_log_source.cc we missed the entry for collecting touchscreen events. This patch adds it back. BUG=234237 TEST=1. Go chrome://system, check entry exists hack-33025-touchscreen_activity 2. File a feedback, and check that the above entry is in the feedback report. Review URL: https://chromiumcodereview.appspot.com/14166006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@195624 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/chromeos/system_logs/command_line_log_source.cc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'chrome/browser/chromeos') diff --git a/chrome/browser/chromeos/system_logs/command_line_log_source.cc b/chrome/browser/chromeos/system_logs/command_line_log_source.cc index 574b8c86..5781876 100644 --- a/chrome/browser/chromeos/system_logs/command_line_log_source.cc +++ b/chrome/browser/chromeos/system_logs/command_line_log_source.cc @@ -58,6 +58,11 @@ void ExecuteCommandLines(chromeos::SystemLogsResponse* response) { CommandLine(base::FilePath("/opt/google/touchpad/generate_userfeedback")); commands.push_back(std::make_pair("hack-33025-touchpad_activity", command)); + command = CommandLine( + base::FilePath("/opt/google/touchscreen/touchscreen_feedback")); + commands.push_back( + std::make_pair("hack-33025-touchscreen_activity", command)); + // Get a list of file sizes for the logged in user (excluding the names of // the files in the Downloads directory for privay reasons). command = CommandLine(base::FilePath("/bin/sh")); -- cgit v1.1