| Index: ui/keyboard/keyboard_controller.cc
|
| diff --git a/ui/keyboard/keyboard_controller.cc b/ui/keyboard/keyboard_controller.cc
|
| index 0a2fd1ffce53d00e6fd932503df2e3c11652af86..99bddd817bfce368a13cf4c75ea9ab46bb9d34e6 100644
|
| --- a/ui/keyboard/keyboard_controller.cc
|
| +++ b/ui/keyboard/keyboard_controller.cc
|
| @@ -129,7 +129,9 @@ void ToggleTouchEventLogging(bool enable) {
|
| else
|
| command.AppendArg("0");
|
| VLOG(1) << "Running " << command.GetCommandLineString();
|
| - base::LaunchProcess(command, base::LaunchOptions(), NULL);
|
| + base::LaunchOptions options;
|
| + options.wait = true;
|
| + base::LaunchProcess(command, options, NULL);
|
| #endif
|
| }
|
|
|
|
|