Chromium Code Reviews| Index: chrome/installer/util/install_util.cc |
| diff --git a/chrome/installer/util/install_util.cc b/chrome/installer/util/install_util.cc |
| index 0c02d71abcb49dc7cb64e720c4f64188250cafa2..b1c7ddabffb289a1338adffe74ecfa2eea2a3029 100644 |
| --- a/chrome/installer/util/install_util.cc |
| +++ b/chrome/installer/util/install_util.cc |
| @@ -223,12 +223,12 @@ void InstallUtil::GetChromeVersion(BrowserDistribution* dist, |
| *version = Version(); |
| if (result == ERROR_SUCCESS && !version_str.empty()) { |
| - VLOG(1) << "Existing " << dist->GetAppShortCutName() << " version found " |
| + VLOG(1) << "Existing " << dist->GetDisplayName() << " version found " |
|
huangs
2013/05/21 21:35:41
I don't think we should localize our logs. Please
|
| << version_str; |
| *version = Version(WideToASCII(version_str)); |
| } else { |
| DCHECK_EQ(ERROR_FILE_NOT_FOUND, result); |
| - VLOG(1) << "No existing " << dist->GetAppShortCutName() |
| + VLOG(1) << "No existing " << dist->GetDisplayName() |
| << " install found."; |
| } |
| } |
| @@ -249,12 +249,12 @@ void InstallUtil::GetCriticalUpdateVersion(BrowserDistribution* dist, |
| *version = Version(); |
| if (result == ERROR_SUCCESS && !version_str.empty()) { |
| - VLOG(1) << "Critical Update version for " << dist->GetAppShortCutName() |
| + VLOG(1) << "Critical Update version for " << dist->GetDisplayName() |
| << " found " << version_str; |
| *version = Version(WideToASCII(version_str)); |
| } else { |
| DCHECK_EQ(ERROR_FILE_NOT_FOUND, result); |
| - VLOG(1) << "No existing " << dist->GetAppShortCutName() |
| + VLOG(1) << "No existing " << dist->GetDisplayName() |
| << " install found."; |
| } |
| } |