| Index: chrome/installer/util/product.cc
|
| diff --git a/chrome/installer/util/product.cc b/chrome/installer/util/product.cc
|
| index 7609d83680b818e9cda382c3723d8f46423a9f3d..6d3d44d39ba77ee50c3ef4eeba4b309cb2425a8a 100644
|
| --- a/chrome/installer/util/product.cc
|
| +++ b/chrome/installer/util/product.cc
|
| @@ -62,7 +62,8 @@ bool Product::LaunchChrome(const FilePath& application_path) const {
|
| bool success = !application_path.empty();
|
| if (success) {
|
| CommandLine cmd(application_path.Append(installer::kChromeExe));
|
| - success = base::LaunchApp(cmd, false, false, NULL);
|
| + base::LaunchOptions options;
|
| + success = base::LaunchProcess(cmd, options);
|
| }
|
| return success;
|
| }
|
|
|