| Index: chrome/browser/first_run/upgrade_util_linux.cc
|
| diff --git a/chrome/browser/first_run/upgrade_util_linux.cc b/chrome/browser/first_run/upgrade_util_linux.cc
|
| index 6384c385235f956c9a508b11dc54d5efe7c809f2..cf6bc21be0bf5ea60e89f2691c6d7f7cd37a6c19 100644
|
| --- a/chrome/browser/first_run/upgrade_util_linux.cc
|
| +++ b/chrome/browser/first_run/upgrade_util_linux.cc
|
| @@ -23,7 +23,8 @@ double saved_last_modified_time_of_exe = 0;
|
| namespace upgrade_util {
|
|
|
| bool RelaunchChromeBrowser(const CommandLine& command_line) {
|
| - return base::LaunchApp(command_line, false, false, NULL);
|
| + base::LaunchOptions options;
|
| + return base::LaunchProcess(command_line, options);
|
| }
|
|
|
| bool IsUpdatePendingRestart() {
|
|
|