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 |