Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2883)

Unified Diff: chrome/browser/chromeos/system_logs/touch_log_source.cc

Issue 335453008: system_logs/touch_log_source: Updated path to log scripts (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698