| OLD | NEW |
| (Empty) |
| 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. | |
| 4 | |
| 5 #include "chrome/browser/first_run/upgrade.h" | |
| 6 | |
| 7 #include "base/command_line.h" | |
| 8 #include "base/logging.h" | |
| 9 | |
| 10 // static | |
| 11 void Upgrade::RelaunchChromeBrowserWithNewCommandLineIfNeeded() { | |
| 12 if (new_command_line_) { | |
| 13 if (!RelaunchChromeBrowser(*new_command_line_)) { | |
| 14 DLOG(ERROR) << "Launching a new instance of the browser failed."; | |
| 15 } else { | |
| 16 DLOG(WARNING) << "Launched a new instance of the browser."; | |
| 17 } | |
| 18 delete new_command_line_; | |
| 19 new_command_line_ = NULL; | |
| 20 } | |
| 21 } | |
| OLD | NEW |