Chromium Code Reviews| Index: chrome/installer/setup/install.cc |
| diff --git a/chrome/installer/setup/install.cc b/chrome/installer/setup/install.cc |
| index b8ebe94fd372897dac60815ae6fae078910fd018..f0a5cc0f4f2e94a577e41d328d350adea40cbfc9 100644 |
| --- a/chrome/installer/setup/install.cc |
| +++ b/chrome/installer/setup/install.cc |
| @@ -87,7 +87,7 @@ void LogShortcutOperation(ShellUtil::ShortcutLocation location, |
| if (properties.has_shortcut_name()) |
| message.append(UTF16ToUTF8(properties.shortcut_name)); |
| else |
| - message.append(UTF16ToUTF8(dist->GetAppShortCutName())); |
| + message.append(UTF16ToUTF8(dist->GetDisplayName())); |
|
huangs
2013/05/21 21:35:41
I don't think we should localize our logs. Please
gab
2013/05/21 21:46:45
grt@ started this a while back, I forget his argum
|
| message.push_back('"'); |
| message.append(" shortcut to "); |
| @@ -330,7 +330,7 @@ bool CreateVisualElementsManifest(const base::FilePath& src_path, |
| BrowserDistribution::CHROME_BROWSER); |
| // TODO(grt): http://crbug.com/75152 Write a reference to a localized |
| // resource for |display_name|. |
| - string16 display_name(dist->GetAppShortCutName()); |
| + string16 display_name(dist->GetDisplayName()); |
| EscapeXmlAttributeValueInSingleQuotes(&display_name); |
| // Fill the manifest with the desired values. |