| Index: chrome/browser/safe_browsing/protocol_manager.cc
|
| ===================================================================
|
| --- chrome/browser/safe_browsing/protocol_manager.cc (revision 36339)
|
| +++ chrome/browser/safe_browsing/protocol_manager.cc (working copy)
|
| @@ -619,9 +619,9 @@
|
| const GURL& referrer_url) {
|
| std::string report_str = StringPrintf(
|
| kSbMalwareReportUrl,
|
| - EscapeQueryParamValue(malware_url.spec()).c_str(),
|
| - EscapeQueryParamValue(page_url.spec()).c_str(),
|
| - EscapeQueryParamValue(referrer_url.spec()).c_str(),
|
| + EscapeQueryParamValue(malware_url.spec(), true).c_str(),
|
| + EscapeQueryParamValue(page_url.spec(), true).c_str(),
|
| + EscapeQueryParamValue(referrer_url.spec(), true).c_str(),
|
| client_name_.c_str(),
|
| version_.c_str());
|
| GURL report_url(report_str);
|
|
|