Index: chrome/installer/setup/install.h |
diff --git a/chrome/installer/setup/install.h b/chrome/installer/setup/install.h |
index 20ebd55d91f49121dc0f49be627169532d890d06..fcfe4db11e423297760cd5b5892964d6009a444b 100644 |
--- a/chrome/installer/setup/install.h |
+++ b/chrome/installer/setup/install.h |
@@ -11,6 +11,7 @@ |
#include "chrome/installer/util/util_constants.h" |
namespace base { |
+class CommandLine; |
class FilePath; |
class Version; |
} |
@@ -124,15 +125,13 @@ void HandleOsUpgradeForBrowser(const InstallerState& installer_state, |
const base::Version& installed_version); |
// Performs per-user installation-related tasks on Active Setup (ran on first |
-// login for each user post system-level Chrome install). |
-// |installation_root|: The root of this install (i.e. the directory in which |
-// chrome.exe is installed). |
-// Shortcut creation is skipped if the First Run beacon is present (unless |
-// |force| is set to true). |
-// |chrome| The installed product (must be a browser). |
-void HandleActiveSetupForBrowser(const base::FilePath& installation_root, |
- const Product& chrome, |
- bool force); |
+// login for each user post system-level Chrome install). Shortcut creation is |
+// skipped if the First Run beacon is present (unless |force| is set to true). |
+void HandleActiveSetupForBrowser(bool force, |
+ const base::CommandLine& command_line, |
+ const MasterPreferences& master_preferences, |
+ InstallationState* original_state, |
+ InstallerState* installer_state); |
} // namespace installer |