Index: chrome/installer/setup/install.h |
diff --git a/chrome/installer/setup/install.h b/chrome/installer/setup/install.h |
index a3c73194787a42e4877c3914e6b11a764fe3baa1..e7fef6a450dbf8195464e264927f5f9692e047e0 100644 |
--- a/chrome/installer/setup/install.h |
+++ b/chrome/installer/setup/install.h |
@@ -18,6 +18,7 @@ |
#include "chrome/installer/util/util_constants.h" |
class FilePath; |
+class CommandLine; |
namespace installer { |
@@ -102,6 +103,12 @@ InstallStatus InstallOrUpdateProduct( |
const installer::MasterPreferences& prefs, |
const Version& new_version); |
+// Code that needs to executed right after OS upgrade, when user logs in. |
gab
2012/08/28 16:08:19
This is not necessarily when the user logs in. For
huangs
2012/08/29 17:02:54
Done.
|
+// This is invoked by the --on-os-upgrade switch (with --chrome). |
+InstallStatus ChromeBrowserOnOsUpgrade(const InstallationState& original_state, |
gab
2012/08/28 16:08:19
Remove "ChromeBrowser" from the name of this funct
huangs
2012/08/29 17:02:54
Done. Also removed "(with --chrome)" in comment.
|
+ const InstallerState& installer_state, |
+ const CommandLine& cmd_line); |
+ |
} // namespace installer |
#endif // CHROME_INSTALLER_SETUP_INSTALL_H_ |