| Index: chrome/installer/util/auto_launch_util.h
|
| diff --git a/chrome/installer/util/auto_launch_util.h b/chrome/installer/util/auto_launch_util.h
|
| index 862ebd077b15e66f3b796be1e75bf606c95a5229..2f2b650ff8582692af01f5c3b12f545a6d945fa4 100644
|
| --- a/chrome/installer/util/auto_launch_util.h
|
| +++ b/chrome/installer/util/auto_launch_util.h
|
| @@ -7,7 +7,9 @@
|
|
|
| #include "base/string16.h"
|
|
|
| +namespace base {
|
| class FilePath;
|
| +}
|
|
|
| // A namespace containing the platform specific implementation of setting Chrome
|
| // to launch at user login.
|
| @@ -32,7 +34,7 @@ namespace auto_launch_util {
|
| // (as it will default to the application path of the current executable).
|
| bool AutoStartRequested(const string16& profile_directory,
|
| bool window_requested,
|
| - const FilePath& application_path);
|
| + const base::FilePath& application_path);
|
|
|
| // Disables all auto-start features. |profile_directory| is the name of the
|
| // directory (leaf, not the full path) that contains the profile that was set
|
| @@ -47,7 +49,7 @@ void DisableAllAutoStartFeatures(const string16& profile_directory);
|
| // auto-launch, ie. the installer. This is because |application_path|, if left
|
| // blank, defaults to the application path of the current executable.
|
| void EnableForegroundStartAtLogin(const string16& profile_directory,
|
| - const FilePath& application_path);
|
| + const base::FilePath& application_path);
|
|
|
| // Disables auto-starting Chrome in foreground mode at user login.
|
| // |profile_directory| is the name of the directory (leaf, not the full path)
|
|
|