Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2951)

Unified Diff: chrome/browser/safe_browsing/safe_browsing_util.cc

Issue 543077: The search terms are escaped using + or %20 for space depending on whether re... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/safe_browsing/safe_browsing_util.cc
===================================================================
--- chrome/browser/safe_browsing/safe_browsing_util.cc (revision 36339)
+++ chrome/browser/safe_browsing/safe_browsing_util.cc (working copy)
@@ -596,8 +596,8 @@
if (!lang)
lang = "en"; // fallback
const std::string continue_esc =
- EscapeQueryParamValue(StringPrintf(kContinueUrlFormat, lang));
- const std::string current_esc = EscapeQueryParamValue(url_to_report);
+ EscapeQueryParamValue(StringPrintf(kContinueUrlFormat, lang), true);
+ const std::string current_esc = EscapeQueryParamValue(url_to_report, true);
#if defined(OS_WIN)
BrowserDistribution* dist = BrowserDistribution::GetDistribution();
« no previous file with comments | « chrome/browser/safe_browsing/safe_browsing_blocking_page.cc ('k') | chrome/browser/search_engines/template_url.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698