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

Unified Diff: chrome/renderer/render_view.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
« no previous file with comments | « chrome/browser/search_engines/template_url_unittest.cc ('k') | net/base/escape.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/render_view.cc
===================================================================
--- chrome/renderer/render_view.cc (revision 36339)
+++ chrome/renderer/render_view.cc (working copy)
@@ -2897,7 +2897,7 @@
// Construct the query params to send to link doctor.
std::string params(alternate_error_page_url_.query());
params.append("&url=");
- params.append(EscapeQueryParamValue(url_to_send.spec()));
+ params.append(EscapeQueryParamValue(url_to_send.spec(), true));
params.append("&sourceid=chrome");
params.append("&error=");
switch (error_type) {
« no previous file with comments | « chrome/browser/search_engines/template_url_unittest.cc ('k') | net/base/escape.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698