Index: chrome/installer/setup/install.h |
diff --git a/chrome/installer/setup/install.h b/chrome/installer/setup/install.h |
index a3c73194787a42e4877c3914e6b11a764fe3baa1..1ff3bdb830958edd81e9d1c16b2613522bee1f1d 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; |
grt (UTC plus 2)
2012/08/30 04:15:25
remove this
huangs
2012/08/30 17:13:07
Done.
|
namespace installer { |
@@ -102,6 +103,13 @@ InstallStatus InstallOrUpdateProduct( |
const installer::MasterPreferences& prefs, |
const Version& new_version); |
+// Code that needs to executed right after OS upgrade. |
grt (UTC plus 2)
2012/08/30 04:15:25
chromium style:
"Performs installation-related tas
huangs
2012/08/30 17:13:07
Done. Also removing unused "const InstallationSta
|
+// This is invoked by the --on-os-upgrade switch. |
+// Returns true if successful. |
+bool OnOsUpgrade(const InstallationState& original_state, |
+ const InstallerState& installer_state, |
+ const FilePath& setup_exe); |
+ |
} // namespace installer |
#endif // CHROME_INSTALLER_SETUP_INSTALL_H_ |