| Index: chrome/installer/setup/install.cc
|
| diff --git a/chrome/installer/setup/install.cc b/chrome/installer/setup/install.cc
|
| index 5049fdca81bcbfedbcbf4d959a6b40c6fbcd82d2..5c4f305a052d7dacd7329e59fddefd3fb622ff7a 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"<", att_value);
|
| + base::ReplaceChars(*att_value, L"&", L"&", att_value);
|
| + base::ReplaceChars(*att_value, L"'", L"'", att_value);
|
| + base::ReplaceChars(*att_value, L"<", L"<", att_value);
|
| }
|
|
|
| bool CreateVisualElementsManifest(const base::FilePath& src_path,
|
|
|