| Index: chrome/installer/util/google_chrome_distribution.cc
|
| diff --git a/chrome/installer/util/google_chrome_distribution.cc b/chrome/installer/util/google_chrome_distribution.cc
|
| index e287e87e6d957a9deb3f383d3bbb3f82305bed39..12b12686e495deab2b79e897a496f4b63a079cb9 100644
|
| --- a/chrome/installer/util/google_chrome_distribution.cc
|
| +++ b/chrome/installer/util/google_chrome_distribution.cc
|
| @@ -97,8 +97,9 @@ void GoogleChromeDistribution::DoPostUninstallOperations(
|
| iexplore = iexplore.AppendASCII("Internet Explorer");
|
| iexplore = iexplore.AppendASCII("iexplore.exe");
|
|
|
| - base::string16 command = iexplore.value() + L" " + GetUninstallSurveyUrl() +
|
| - L"&" + kVersionParam + L"=" + base::UTF8ToWide(version.GetString()) +
|
| + base::string16 command = L"\"" + iexplore.value() + L"\" " +
|
| + GetUninstallSurveyUrl() +
|
| + L"&" + kVersionParam + L"=" + base::ASCIIToUTF16(version.GetString()) +
|
| L"&" + kOSParam + L"=" + os_version;
|
|
|
| base::string16 uninstall_metrics;
|
|
|