[Metrics] Make MetricsStateManager take a callback param to check if UMA is enabled.
[chromium-blink-merge.git] / chrome / browser / first_run / upgrade_util.cc
blob7e700aa95c44122a622a4d90a42c083e67625775
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"
10 namespace {
12 CommandLine* command_line;
14 } // namespace
16 namespace upgrade_util {
18 void SetNewCommandLine(CommandLine* new_command_line) {
19 command_line = new_command_line;
22 void RelaunchChromeBrowserWithNewCommandLineIfNeeded() {
23 if (command_line) {
24 if (!RelaunchChromeBrowser(*command_line)) {
25 DLOG(ERROR) << "Launching a new instance of the browser failed.";
26 } else {
27 DLOG(WARNING) << "Launched a new instance of the browser.";
29 delete command_line;
30 command_line = NULL;
34 } // namespace upgrade_util