Chromium Code Reviews| Index: chrome/installer/launcher_support/chrome_launcher_support.h |
| diff --git a/chrome/installer/launcher_support/chrome_launcher_support.h b/chrome/installer/launcher_support/chrome_launcher_support.h |
| index a67e53374ab60c277f964d62fee7081afcc7f61d..764d4c6096d5e4598fe93128688d00f9502c9d87 100644 |
| --- a/chrome/installer/launcher_support/chrome_launcher_support.h |
| +++ b/chrome/installer/launcher_support/chrome_launcher_support.h |
| @@ -4,6 +4,7 @@ |
| #ifndef CHROME_INSTALLER_LAUNCHER_SUPPORT_CHROME_LAUNCHER_SUPPORT_H_ |
| #define CHROME_INSTALLER_LAUNCHER_SUPPORT_CHROME_LAUNCHER_SUPPORT_H_ |
| +#include "base/string16.h" |
| class FilePath; |
| @@ -22,10 +23,27 @@ enum InstallationLevel { |
| // The file path returned (if any) is guaranteed to exist. |
| FilePath GetAnyChromePath(); |
| +// Returns the path to an existing setup.exe at the specified level, if it can |
| +// be found via Omaha client state. |
| +FilePath GetSetupExeForInstallationLevel(InstallationLevel level); |
| + |
| // Returns the path to an installed chrome.exe at the specified level, if it can |
| // be found via Omaha client state. |
| FilePath GetChromePathForInstallationLevel(InstallationLevel level); |
| +// TODO: Comments |
|
erikwright (departed)
2012/09/12 15:53:50
These new methods should be moved out of launcher_
huangs
2012/09/12 19:24:27
Done.
|
| +bool GetAppHostVersionString(string16* version_str); |
| + |
| +// TODO: Comments |
| +bool GetChromeBinariesVersionStringForInstallationLevel(InstallationLevel level, |
| + string16* version_str); |
| + |
| +// TODO: Comments |
| +bool GetAnyChromeBinariesVersionString(string16* version_str); |
| + |
| +// TODO: COmments. |
| +bool UpgradeAppHost(); |
| + |
| } // namespace chrome_launcher_support |
| #endif // CHROME_INSTALLER_LAUNCHER_SUPPORT_CHROME_LAUNCHER_SUPPORT_H_ |