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

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

Issue 819133004: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 6 years 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
Index: chrome/browser/chromeos/system_logs/touch_log_source_x11.cc
diff --git a/chrome/browser/chromeos/system_logs/touch_log_source_x11.cc b/chrome/browser/chromeos/system_logs/touch_log_source_x11.cc
index 2846f808d87f253a2503d3996e42c6a2f426c960..fa27399ee4e82298f505d04b53d394bf50ca83e5 100644
--- a/chrome/browser/chromeos/system_logs/touch_log_source_x11.cc
+++ b/chrome/browser/chromeos/system_logs/touch_log_source_x11.cc
@@ -29,16 +29,17 @@ void GetTouchLogsX11(system_logs::SystemLogsResponse* response) {
(*response)[kHUDLogDataKey] = touch_log;
}
- std::vector<std::pair<std::string, CommandLine>> commands;
- CommandLine command =
- CommandLine(base::FilePath("/opt/google/input/inputcontrol"));
+ std::vector<std::pair<std::string, base::CommandLine>> commands;
+ base::CommandLine command =
+ base::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/input/cmt_feedback"));
+ command = base::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/input/evdev_feedback"));
+ command =
+ base::CommandLine(base::FilePath("/opt/google/input/evdev_feedback"));
commands.push_back(
std::make_pair("hack-33025-touchscreen_activity", command));

Powered by Google App Engine
This is Rietveld 408576698