| 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 caca2a5006fc8e06e42e2c93106ad7886390c2cc..ea4d12ed01e7c2666661e880746c32a7ac8d2420 100644
|
| --- a/chrome/installer/launcher_support/chrome_launcher_support.h
|
| +++ b/chrome/installer/launcher_support/chrome_launcher_support.h
|
| @@ -5,7 +5,9 @@
|
| #ifndef CHROME_INSTALLER_LAUNCHER_SUPPORT_CHROME_LAUNCHER_SUPPORT_H_
|
| #define CHROME_INSTALLER_LAUNCHER_SUPPORT_CHROME_LAUNCHER_SUPPORT_H_
|
|
|
| +namespace base {
|
| class FilePath;
|
| +}
|
|
|
| namespace chrome_launcher_support {
|
|
|
| @@ -16,17 +18,17 @@ enum InstallationLevel {
|
|
|
| // 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);
|
| +base::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. Prefers the installer from a multi-install,
|
| // but may also return that of a single-install of Chrome if no multi-install
|
| // exists.
|
| -FilePath GetChromePathForInstallationLevel(InstallationLevel level);
|
| +base::FilePath GetChromePathForInstallationLevel(InstallationLevel level);
|
|
|
| // Returns the path to an installed app_host.exe at the specified level, if
|
| // it can be found via Omaha client state.
|
| -FilePath GetAppHostPathForInstallationLevel(InstallationLevel level);
|
| +base::FilePath GetAppHostPathForInstallationLevel(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
|
| @@ -34,7 +36,7 @@ FilePath GetAppHostPathForInstallationLevel(InstallationLevel level);
|
| // In non-official builds, to ease development, this will first look for a
|
| // chrome.exe in the same directory as the current executable.
|
| // The file path returned (if any) is guaranteed to exist.
|
| -FilePath GetAnyChromePath();
|
| +base::FilePath GetAnyChromePath();
|
|
|
| // Returns the path to an installed app_host.exe, or an empty path. Prefers a
|
| // system-level installation to a user-level installation. Uses Omaha client
|
| @@ -42,7 +44,7 @@ FilePath GetAnyChromePath();
|
| // In non-official builds, to ease development, this will first look for a
|
| // app_host.exe in the same directory as the current executable.
|
| // The file path returned (if any) is guaranteed to exist.
|
| -FilePath GetAnyAppHostPath();
|
| +base::FilePath GetAnyAppHostPath();
|
|
|
| // Returns true if App Host is installed (system-level or user-level),
|
| // or in the same directory as the current executable.
|
|
|