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 9cf14792b76978d38273f45613ffff60b2ee4cac..1f792c14cda9d35f3f5b7bcf64b6a0c3d00907ef 100644 |
| --- a/chrome/installer/launcher_support/chrome_launcher_support.h |
| +++ b/chrome/installer/launcher_support/chrome_launcher_support.h |
| @@ -22,12 +22,22 @@ enum InstallationLevel { |
| // exists. |
| base::FilePath GetChromePathForInstallationLevel(InstallationLevel level); |
| +// Returns the path to an installed SxS chrome.exe at the specified level, if |
|
grt (UTC plus 2)
2014/07/30 15:05:37
sorry for deleting your code. :-)
jackhou1
2014/07/31 03:24:56
Acceptable collateral damage from a worthwhile cle
|
| +// it can be found via Omaha client state. |
| +base::FilePath GetChromeSxSPathForInstallationLevel(InstallationLevel level); |
| + |
| // Returns the path to an installed chrome.exe, or an empty path. Prefers a |
| // system-level installation to a user-level installation. Uses Omaha client |
| // state to identify a Chrome installation location. |
| // The file path returned (if any) is guaranteed to exist. |
| base::FilePath GetAnyChromePath(); |
| +// Returns the path to an installed SxS chrome.exe, or an empty path. Prefers a |
| +// user-level installation to a system-level installation. Uses Omaha client |
| +// state to identify a Chrome Canary installation location. |
| +// The file path returned (if any) is guaranteed to exist. |
| +base::FilePath GetAnyChromeSxSPath(); |
| + |
| } // namespace chrome_launcher_support |
| #endif // CHROME_INSTALLER_LAUNCHER_SUPPORT_CHROME_LAUNCHER_SUPPORT_H_ |