| Index: chrome/installer/setup/setup_main.cc
|
| diff --git a/chrome/installer/setup/setup_main.cc b/chrome/installer/setup/setup_main.cc
|
| index 4e709f66dcc1493e37c460ae7145b3d037eb0b79..48fbe5430c9c1a73424cf46c193227c3f15267fc 100644
|
| --- a/chrome/installer/setup/setup_main.cc
|
| +++ b/chrome/installer/setup/setup_main.cc
|
| @@ -158,7 +158,7 @@ void AddExistingMultiInstalls(const InstallationState& original_state,
|
| installer_state->AddProductFromState(type, *state);
|
| VLOG(1) << "Product already installed and must be included: "
|
| << BrowserDistribution::GetSpecificDistribution(
|
| - type)->GetApplicationName();
|
| + type)->GetAppShortCutName();
|
| }
|
| }
|
| }
|
| @@ -398,7 +398,7 @@ bool CheckMultiInstallConditions(const InstallationState& original_state,
|
| multi_chrome->SetOption(installer::kOptionMultiInstall, true);
|
| chrome = installer_state->AddProduct(&multi_chrome);
|
| VLOG(1) << "Upgrading existing multi-install Chrome browser along with "
|
| - << chrome_frame->distribution()->GetApplicationName();
|
| + << chrome_frame->distribution()->GetAppShortCutName();
|
| } else if (chrome_frame->HasOption(installer::kOptionReadyMode)) {
|
| // Chrome Frame with ready-mode is to be installed, yet Chrome is
|
| // neither installed nor being installed. Fail.
|
| @@ -479,7 +479,7 @@ bool CheckPreInstallConditions(const InstallationState& original_state,
|
| // Block downgrades from multi-install to single-install.
|
| if (!installer_state->is_multi_install() &&
|
| product_state->is_multi_install()) {
|
| - LOG(ERROR) << "Multi-install " << browser_dist->GetApplicationName()
|
| + LOG(ERROR) << "Multi-install " << browser_dist->GetAppShortCutName()
|
| << " exists; aborting single install.";
|
| *status = installer::MULTI_INSTALLATION_EXISTS;
|
| installer_state->WriteInstallerResult(*status,
|
|
|