diff options
author | miletus@chromium.org <miletus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-22 22:39:11 +0000 |
---|---|---|
committer | miletus@chromium.org <miletus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-22 22:39:11 +0000 |
commit | 05c41624a4ab77d4e766ec5de58211b7e38c86c7 (patch) | |
tree | 84ac199feccd3af99e02413bd3929cb299bd4523 /chrome/browser/chromeos | |
parent | 92e2b68cffb110afa4391aafc670739128bead5a (diff) | |
download | chromium_src-05c41624a4ab77d4e766ec5de58211b7e38c86c7.zip chromium_src-05c41624a4ab77d4e766ec5de58211b7e38c86c7.tar.gz chromium_src-05c41624a4ab77d4e766ec5de58211b7e38c86c7.tar.bz2 |
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
Diffstat (limited to 'chrome/browser/chromeos')
-rw-r--r-- | chrome/browser/chromeos/system_logs/command_line_log_source.cc | 5 |
1 files changed, 5 insertions, 0 deletions
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")); |