1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/first_run/upgrade_util.h"
7 #include "base/command_line.h"
8 #include "base/logging.h"
12 CommandLine
* command_line
;
16 namespace upgrade_util
{
18 void SetNewCommandLine(CommandLine
* new_command_line
) {
19 command_line
= new_command_line
;
22 void RelaunchChromeBrowserWithNewCommandLineIfNeeded() {
24 if (!RelaunchChromeBrowser(*command_line
)) {
25 DLOG(ERROR
) << "Launching a new instance of the browser failed.";
27 DLOG(WARNING
) << "Launched a new instance of the browser.";
34 } // namespace upgrade_util