OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_INSTALLER_LAUNCHER_SUPPORT_CHROME_LAUNCHER_SUPPORT_H_ | 5 #ifndef CHROME_INSTALLER_LAUNCHER_SUPPORT_CHROME_LAUNCHER_SUPPORT_H_ |
6 #define CHROME_INSTALLER_LAUNCHER_SUPPORT_CHROME_LAUNCHER_SUPPORT_H_ | 6 #define CHROME_INSTALLER_LAUNCHER_SUPPORT_CHROME_LAUNCHER_SUPPORT_H_ |
7 | 7 |
8 namespace base { | 8 namespace base { |
9 class FilePath; | 9 class FilePath; |
10 } | 10 } |
11 | 11 |
12 namespace chrome_launcher_support { | 12 namespace chrome_launcher_support { |
13 | 13 |
14 enum InstallationLevel { | 14 enum InstallationLevel { |
15 USER_LEVEL_INSTALLATION, | 15 USER_LEVEL_INSTALLATION, |
16 SYSTEM_LEVEL_INSTALLATION, | 16 SYSTEM_LEVEL_INSTALLATION, |
17 }; | 17 }; |
18 | 18 |
19 enum InstallationState { | |
20 NOT_INSTALLED, | |
21 INSTALLED_AT_USER_LEVEL, | |
22 INSTALLED_AT_SYSTEM_LEVEL, | |
23 }; | |
24 | |
25 // The app GUID for Chrome App Launcher. | |
26 extern const wchar_t kAppLauncherGuid[]; | |
27 | |
28 // Returns the path to an existing setup.exe at the specified level, if it can | 19 // Returns the path to an existing setup.exe at the specified level, if it can |
29 // be found via Omaha client state. | 20 // be found via Omaha client state. |
30 base::FilePath GetSetupExeForInstallationLevel(InstallationLevel level); | 21 base::FilePath GetSetupExeForInstallationLevel(InstallationLevel level); |
31 | 22 |
32 // Returns the path to an installed chrome.exe at the specified level, if it can | 23 // Returns the path to an installed chrome.exe at the specified level, if it can |
33 // be found via Omaha client state. Prefers the installer from a multi-install, | 24 // be found via Omaha client state. Prefers the installer from a multi-install, |
34 // but may also return that of a single-install of Chrome if no multi-install | 25 // but may also return that of a single-install of Chrome if no multi-install |
35 // exists. | 26 // exists. |
36 base::FilePath GetChromePathForInstallationLevel(InstallationLevel level); | 27 base::FilePath GetChromePathForInstallationLevel(InstallationLevel level); |
37 | 28 |
38 // Returns the path to an installed app_host.exe at the specified level, if | |
39 // it can be found via Omaha client state. | |
40 base::FilePath GetAppHostPathForInstallationLevel(InstallationLevel level); | |
41 | |
42 // Returns the path to an installed SxS chrome.exe at the specified level, if | 29 // Returns the path to an installed SxS chrome.exe at the specified level, if |
43 // it can be found via Omaha client state. | 30 // it can be found via Omaha client state. |
44 base::FilePath GetChromeSxSPathForInstallationLevel(InstallationLevel level); | 31 base::FilePath GetChromeSxSPathForInstallationLevel(InstallationLevel level); |
45 | 32 |
46 // Returns the path to an installed chrome.exe, or an empty path. Prefers a | 33 // Returns the path to an installed chrome.exe, or an empty path. Prefers a |
47 // system-level installation to a user-level installation. Uses Omaha client | 34 // system-level installation to a user-level installation. Uses Omaha client |
48 // state to identify a Chrome installation location. | 35 // state to identify a Chrome installation location. |
49 // The file path returned (if any) is guaranteed to exist. | 36 // The file path returned (if any) is guaranteed to exist. |
50 base::FilePath GetAnyChromePath(); | 37 base::FilePath GetAnyChromePath(); |
51 | 38 |
52 // Returns the path to an installed app_host.exe, or an empty path. Prefers a | |
53 // system-level installation to a user-level installation. Uses Omaha client | |
54 // state to identify a App Host installation location. | |
55 // The file path returned (if any) is guaranteed to exist. | |
56 base::FilePath GetAnyAppHostPath(); | |
57 | |
58 // Returns the path to an installed SxS chrome.exe, or an empty path. Prefers a | 39 // Returns the path to an installed SxS chrome.exe, or an empty path. Prefers a |
59 // user-level installation to a system-level installation. Uses Omaha client | 40 // user-level installation to a system-level installation. Uses Omaha client |
60 // state to identify a Chrome Canary installation location. | 41 // state to identify a Chrome Canary installation location. |
61 // The file path returned (if any) is guaranteed to exist. | 42 // The file path returned (if any) is guaranteed to exist. |
62 base::FilePath GetAnyChromeSxSPath(); | 43 base::FilePath GetAnyChromeSxSPath(); |
63 | 44 |
64 // Uninstalls the legacy app launcher by launching setup.exe with the uninstall | |
65 // arguments from the App Launcher ClientState registry key. The uninstall will | |
66 // run asynchronously. | |
67 void UninstallLegacyAppLauncher(InstallationLevel level); | |
68 | |
69 // Returns true if App Host is installed (system-level or user-level), | |
70 // or in the same directory as the current executable. | |
71 bool IsAppHostPresent(); | |
72 | |
73 // Returns the app launcher installation state. If the launcher is installed | |
74 // at both system level and user level, system level is returned. | |
75 InstallationState GetAppLauncherInstallationState(); | |
76 | |
77 // Returns true if App Launcher is installed (system-level or user-level). | |
78 bool IsAppLauncherPresent(); | |
79 | |
80 // Returns true if the Chrome browser is installed (system-level or user-level). | 45 // Returns true if the Chrome browser is installed (system-level or user-level). |
81 // If this is running in an official build, it will check if a non-canary build | 46 // If this is running in an official build, it will check if a non-canary build |
82 // if installed. If it is not an official build, it will always return true. | 47 // if installed. If it is not an official build, it will always return true. |
83 bool IsChromeBrowserPresent(); | 48 bool IsChromeBrowserPresent(); |
84 | 49 |
85 } // namespace chrome_launcher_support | 50 } // namespace chrome_launcher_support |
86 | 51 |
87 #endif // CHROME_INSTALLER_LAUNCHER_SUPPORT_CHROME_LAUNCHER_SUPPORT_H_ | 52 #endif // CHROME_INSTALLER_LAUNCHER_SUPPORT_CHROME_LAUNCHER_SUPPORT_H_ |
OLD | NEW |