summaryrefslogtreecommitdiffstats
path: root/chrome/installer/setup
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-13 13:50:22 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-13 13:50:22 +0000
commitd8aebf7cc2dc28f5f6d4ca2ecd2db09570962b57 (patch)
tree1216ca60ba27f2aa0f2b5179de05e55c927417fc /chrome/installer/setup
parent0abd4a7b470aa73b2af427210f01c2276b56bc8c (diff)
downloadchromium_src-d8aebf7cc2dc28f5f6d4ca2ecd2db09570962b57.zip
chromium_src-d8aebf7cc2dc28f5f6d4ca2ecd2db09570962b57.tar.gz
chromium_src-d8aebf7cc2dc28f5f6d4ca2ecd2db09570962b57.tar.bz2
first-run: Refactor Upgrade class into a common upgrade_util API.
BUG=79203 TEST=None R=jhawkins@chromium.org Review URL: http://codereview.chromium.org/6840003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81409 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer/setup')
-rw-r--r--chrome/installer/setup/install_worker.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/installer/setup/install_worker.cc b/chrome/installer/setup/install_worker.cc
index 7bdc9e5..da91368 100644
--- a/chrome/installer/setup/install_worker.cc
+++ b/chrome/installer/setup/install_worker.cc
@@ -395,7 +395,7 @@ bool AppendPostInstallTasks(const InstallerState& installer_state,
// However, as it stands, we don't have a way to know which distribution
// will check the key and run the command, so we add it for all.
// After the first run, the subsequent runs should just be noops.
- // (see Upgrade::SwapNewChromeExeIfPresent).
+ // (see upgrade_utils::SwapNewChromeExeIfPresent).
CommandLine product_rename_cmd(rename);
products[i]->AppendProductFlags(&product_rename_cmd);
in_use_update_work_items->AddSetRegValueWorkItem(
@@ -416,7 +416,7 @@ bool AppendPostInstallTasks(const InstallerState& installer_state,
UTF8ToWide(current_version->GetString()),
true);
// TODO(tommi): We should move the rename command here. We also need to
- // update Upgrade::SwapNewChromeExeIfPresent.
+ // update upgrade_utils::SwapNewChromeExeIfPresent.
}
post_install_task_list->AddWorkItem(in_use_update_work_items.release());