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

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

Issue 8813001: Wait for tpcontrol to exit so we don't leave zombie processes hanging around. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 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
« 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/touchpad_settings.cc
===================================================================
--- chrome/browser/chromeos/system/touchpad_settings.cc (revision 112953)
+++ chrome/browser/chromeos/system/touchpad_settings.cc (working copy)
@@ -31,7 +31,9 @@
if (!TPCtrlExists())
return;
- base::LaunchProcess(CommandLine(argv), base::LaunchOptions(), NULL);
+ base::LaunchOptions options;
+ options.wait = true;
+ base::LaunchProcess(CommandLine(argv), options, NULL);
}
} // namespace
« 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