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

Unified Diff: chrome/browser/chromeos/system/touchpad_settings.cc

Issue 7377012: Change base::LaunchProcess API slightly (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 5 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 | « chrome/browser/chromeos/input_method/xkeyboard.cc ('k') | chrome/browser/first_run/first_run_gtk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/system/touchpad_settings.cc
diff --git a/chrome/browser/chromeos/system/touchpad_settings.cc b/chrome/browser/chromeos/system/touchpad_settings.cc
index e7d2989fda84509380e1bd494e164c9349cf7112..af34a2c75aaffe23e6fc671bab0089c15a03abe1 100644
--- a/chrome/browser/chromeos/system/touchpad_settings.cc
+++ b/chrome/browser/chromeos/system/touchpad_settings.cc
@@ -36,7 +36,7 @@ void SetSensitivity(int value) {
base::LaunchOptions options;
options.wait = false; // Launch asynchronously.
- base::LaunchProcess(CommandLine(argv), options);
+ base::LaunchProcess(CommandLine(argv), options, NULL);
}
void SetTapToClick(bool enabled) {
@@ -56,7 +56,7 @@ void SetTapToClick(bool enabled) {
base::LaunchOptions options;
options.wait = false; // Launch asynchronously.
- base::LaunchProcess(CommandLine(argv), options);
+ base::LaunchProcess(CommandLine(argv), options, NULL);
}
} // namespace touchpad_settings
« no previous file with comments | « chrome/browser/chromeos/input_method/xkeyboard.cc ('k') | chrome/browser/first_run/first_run_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698