summaryrefslogtreecommitdiffstats
path: root/chrome/installer/setup/install.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/installer/setup/install.cc')
-rw-r--r--chrome/installer/setup/install.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/installer/setup/install.cc b/chrome/installer/setup/install.cc
index 5049fdc..5c4f305 100644
--- a/chrome/installer/setup/install.cc
+++ b/chrome/installer/setup/install.cc
@@ -289,9 +289,9 @@ installer::InstallShortcutOperation GetAppLauncherShortcutOperation(
namespace installer {
void EscapeXmlAttributeValueInSingleQuotes(string16* att_value) {
- ReplaceChars(*att_value, L"&", L"&", att_value);
- ReplaceChars(*att_value, L"'", L"'", att_value);
- ReplaceChars(*att_value, L"<", L"&lt;", att_value);
+ base::ReplaceChars(*att_value, L"&", L"&amp;", att_value);
+ base::ReplaceChars(*att_value, L"'", L"&apos;", att_value);
+ base::ReplaceChars(*att_value, L"<", L"&lt;", att_value);
}
bool CreateVisualElementsManifest(const base::FilePath& src_path,