diff options
Diffstat (limited to 'chrome/browser/chromeos/system/touchpad_settings.cc')
-rw-r--r-- | chrome/browser/chromeos/system/touchpad_settings.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/chromeos/system/touchpad_settings.cc b/chrome/browser/chromeos/system/touchpad_settings.cc index e7d2989..af34a2c 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 |