| Index: chrome/installer/util/installer_state.cc
|
| diff --git a/chrome/installer/util/installer_state.cc b/chrome/installer/util/installer_state.cc
|
| index f69d5cd990ac2afc09667af2b9d7914df3e49694..049c58d86179cf4ed8b124ce1f902531fedfd993 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();
|
| }
|
| }
|
| }
|
| @@ -260,7 +260,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();
|
| }
|
| }
|
|
|
|
|