| 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
 | 
| 
 |