diff options
Diffstat (limited to 'chrome/installer/util/install_util.cc')
-rw-r--r-- | chrome/installer/util/install_util.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/chrome/installer/util/install_util.cc b/chrome/installer/util/install_util.cc index e7f8f34..86f0847 100644 --- a/chrome/installer/util/install_util.cc +++ b/chrome/installer/util/install_util.cc @@ -107,9 +107,7 @@ void InstallUtil::WriteInstallerResult(bool system_install, install_list->AddSetRegValueWorkItem(root, key, L"InstallerResultUIString", msg, true); } - // TODO(rahulk) verify that the absence of InstallerSuccessLaunchCmdLine - // for non-system installs does not break the gcapi.dll. - if ((launch_cmd != NULL) && system_install) { + if (launch_cmd != NULL) { install_list->AddSetRegValueWorkItem(root, key, L"InstallerSuccessLaunchCmdLine", *launch_cmd, true); |