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 c9df631e495f0e15720af17495683d059f3f1cb2..07a87803af902ebb4f9eded5fbd048b7fa9d31ae 100644 |
| --- a/chrome/installer/launcher_support/chrome_launcher_support.h |
| +++ b/chrome/installer/launcher_support/chrome_launcher_support.h |
| @@ -25,14 +25,10 @@ base::FilePath GetChromePathForInstallationLevel(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. |
| +// If |is_canary| is specified, gets the path to the SxS (Canary) version of |
|
Vitaly Buka (NO REVIEWS)
2014/10/30 16:46:17
|is_canary| is true
Matt Giuca
2015/01/09 06:17:32
Done.
|
| +// chrome.exe. |
| // 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(); |
| +base::FilePath GetAnyChromePath(bool is_canary); |
| } // namespace chrome_launcher_support |