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