| Index: chrome/installer/util/installer_state.cc
|
| diff --git a/chrome/installer/util/installer_state.cc b/chrome/installer/util/installer_state.cc
|
| index 07b75b31c0f777cc3f6c13024bf424a78ceadd48..bba1e3bca69847eb4d779b06c5d6873d0a523b72 100644
|
| --- a/chrome/installer/util/installer_state.cc
|
| +++ b/chrome/installer/util/installer_state.cc
|
| @@ -123,20 +123,20 @@ void InstallerState::Initialize(const CommandLine& command_line,
|
| Product* p = AddProductFromPreferences(
|
| BrowserDistribution::CHROME_BROWSER, prefs, machine_state);
|
| VLOG(1) << (is_uninstall ? "Uninstall" : "Install")
|
| - << " distribution: " << p->distribution()->GetAppShortCutName();
|
| + << " distribution: " << p->distribution()->GetDisplayName();
|
| }
|
| if (prefs.install_chrome_frame()) {
|
| Product* p = AddProductFromPreferences(
|
| BrowserDistribution::CHROME_FRAME, prefs, machine_state);
|
| VLOG(1) << (is_uninstall ? "Uninstall" : "Install")
|
| - << " distribution: " << p->distribution()->GetAppShortCutName();
|
| + << " distribution: " << p->distribution()->GetDisplayName();
|
| }
|
|
|
| if (prefs.install_chrome_app_launcher()) {
|
| Product* p = AddProductFromPreferences(
|
| BrowserDistribution::CHROME_APP_HOST, prefs, machine_state);
|
| VLOG(1) << (is_uninstall ? "Uninstall" : "Install")
|
| - << " distribution: " << p->distribution()->GetAppShortCutName();
|
| + << " distribution: " << p->distribution()->GetDisplayName();
|
| }
|
|
|
| if (!is_uninstall && is_multi_install()) {
|
| @@ -169,7 +169,7 @@ void InstallerState::Initialize(const CommandLine& command_line,
|
| Product* p = AddProductFromPreferences(
|
| BrowserDistribution::CHROME_BINARIES, prefs, machine_state);
|
| VLOG(1) << "Install distribution: "
|
| - << p->distribution()->GetAppShortCutName();
|
| + << p->distribution()->GetDisplayName();
|
| }
|
| }
|
|
|
| @@ -208,7 +208,7 @@ void InstallerState::Initialize(const CommandLine& command_line,
|
| Product* p = AddProductFromPreferences(
|
| conditional_additions[i].type, prefs, machine_state);
|
| VLOG(1) << "Uninstall distribution: "
|
| - << p->distribution()->GetAppShortCutName();
|
| + << p->distribution()->GetDisplayName();
|
| }
|
| }
|
| }
|
| @@ -271,7 +271,7 @@ void InstallerState::Initialize(const CommandLine& command_line,
|
| Product* p = AddProductFromPreferences(
|
| BrowserDistribution::CHROME_BINARIES, prefs, machine_state);
|
| VLOG(1) << (is_uninstall ? "Uninstall" : "Install")
|
| - << " distribution: " << p->distribution()->GetAppShortCutName();
|
| + << " distribution: " << p->distribution()->GetDisplayName();
|
| }
|
| }
|
|
|
|
|