Commit bf5ba14f authored by grt's avatar grt Committed by Commit bot

Quote the path to IE when launching it for the uninstall survey.

BUG=434964
R=gab@chromium.org

Review URL: https://codereview.chromium.org/741993002

Cr-Commit-Position: refs/heads/master@{#305011}
parent 2aaf4e3d
...@@ -97,8 +97,9 @@ void GoogleChromeDistribution::DoPostUninstallOperations( ...@@ -97,8 +97,9 @@ void GoogleChromeDistribution::DoPostUninstallOperations(
iexplore = iexplore.AppendASCII("Internet Explorer"); iexplore = iexplore.AppendASCII("Internet Explorer");
iexplore = iexplore.AppendASCII("iexplore.exe"); iexplore = iexplore.AppendASCII("iexplore.exe");
base::string16 command = iexplore.value() + L" " + GetUninstallSurveyUrl() + base::string16 command = L"\"" + iexplore.value() + L"\" " +
L"&" + kVersionParam + L"=" + base::UTF8ToWide(version.GetString()) + GetUninstallSurveyUrl() +
L"&" + kVersionParam + L"=" + base::ASCIIToUTF16(version.GetString()) +
L"&" + kOSParam + L"=" + os_version; L"&" + kOSParam + L"=" + os_version;
base::string16 uninstall_metrics; base::string16 uninstall_metrics;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment