Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / first_run / upgrade_util.h
blobec8a1ce9af0ba8c940c498de868f56d45bcbbd12
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 #ifndef CHROME_BROWSER_FIRST_RUN_UPGRADE_UTIL_H_
6 #define CHROME_BROWSER_FIRST_RUN_UPGRADE_UTIL_H_
8 #include "build/build_config.h"
10 #if defined(OS_WIN)
11 #include <string>
12 #endif
14 #if !defined(OS_CHROMEOS)
16 class CommandLine;
18 namespace upgrade_util {
20 // Launches Chrome again simulating a "user" launch. If Chrome could not be
21 // launched, returns false.
22 bool RelaunchChromeBrowser(const CommandLine& command_line);
24 #if defined(OS_WIN)
26 extern const char kRelaunchModeMetro[];
27 extern const char kRelaunchModeDesktop[];
28 extern const char kRelaunchModeDefault[];
30 enum RelaunchMode {
31 RELAUNCH_MODE_METRO = 0,
32 RELAUNCH_MODE_DESKTOP = 1,
33 // Default mode indicates caller is not sure which mode to launch.
34 RELAUNCH_MODE_DEFAULT = 2,
37 std::string RelaunchModeEnumToString(const RelaunchMode& relaunch_mode);
39 RelaunchMode RelaunchModeStringToEnum(const std::string& relaunch_mode);
41 // Like RelaunchChromeBrowser() but for Windows 8 it will read pref and restart
42 // chrome accordingly in desktop or metro mode.
43 bool RelaunchChromeWithMode(const CommandLine& command_line,
44 const RelaunchMode& relaunch_mode);
46 #endif
48 #if !defined(OS_MACOSX)
50 void SetNewCommandLine(CommandLine* new_command_line);
52 // Launches a new instance of the browser if the current instance in persistent
53 // mode an upgrade is detected.
54 void RelaunchChromeBrowserWithNewCommandLineIfNeeded();
56 // Windows:
57 // Checks if chrome_new.exe is present in the current instance's install.
58 // Linux:
59 // Checks if the last modified time of chrome is newer than that of the current
60 // running instance.
61 bool IsUpdatePendingRestart();
63 #endif // !defined(OS_MACOSX)
65 } // namespace upgrade_util
67 #endif // !defined(OS_CHROMEOS)
69 #endif // CHROME_BROWSER_FIRST_RUN_UPGRADE_UTIL_H_