Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1029)

Unified Diff: chrome/installer/setup/install_worker.h

Issue 10823437: Callback flow to register Chrome and update shortcuts after OS upgrade to Windows 8 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Abandoning the use of ON_OS_UPGRADE_SUCCESSFUL installer message. Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/installer/setup/install_worker.h
diff --git a/chrome/installer/setup/install_worker.h b/chrome/installer/setup/install_worker.h
index c112f8cd61bbf5a72de18245e34d5b52ef05963d..ccca2be81f0d76eaa4b62d1fe449fa6097d1b458 100644
--- a/chrome/installer/setup/install_worker.h
+++ b/chrome/installer/setup/install_worker.h
@@ -201,6 +201,18 @@ void AddQuickEnableApplicationHostWorkItems(
const Version* new_version,
WorkItemList* work_item_list);
+// Add work items to add or remove the "on-os-upgrade" command to |product|'s
grt (UTC plus 2) 2012/08/30 04:15:25 "Add" -> "Adds"
huangs 2012/08/30 17:13:07 Done, also fixed for three other methods.
+// version key on the basis of the current operation (represented in
+// |installer_state|). |setup_path| (the path to the executable
+// currently being run) and |new_version| (the version of the product(s)
+// currently being installed) are required when processing product
+// installation; they are unused (and may therefore be NULL) when uninstalling.
+void AddOsUpgradeWorkItems(const InstallerState& installer_state,
+ const FilePath* setup_path,
+ const Version* new_version,
gab 2012/08/30 14:24:32 Don't pass a pointer just for the sake of being ab
huangs 2012/08/30 17:13:07 Not fixing this yet, per discussion. Will file cl
+ const Product& product,
+ WorkItemList* install_list);
+
} // namespace installer
#endif // CHROME_INSTALLER_SETUP_INSTALL_WORKER_H_

Powered by Google App Engine
This is Rietveld 408576698