Chromium Code Reviews| Index: chrome/installer/util/installer_state.cc |
| diff --git a/chrome/installer/util/installer_state.cc b/chrome/installer/util/installer_state.cc |
| index 00906292c31514cf2d4333150d52fb9b5383555d..9c39bd65e80a722ae135c416e525b3d6c47da84d 100644 |
| --- a/chrome/installer/util/installer_state.cc |
| +++ b/chrome/installer/util/installer_state.cc |
| @@ -122,20 +122,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(); |
|
huangs
2013/05/21 21:35:41
I don't think we should localize our logs. Please
|
| } |
| 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()) { |
| @@ -168,7 +168,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(); |
| } |
| } |
| @@ -207,7 +207,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(); |
| } |
| } |
| } |
| @@ -259,7 +259,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(); |
| } |
| } |