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

Unified Diff: net/base/escape.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 | « net/base/escape.h ('k') | net/base/escape_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/escape.cc
===================================================================
--- net/base/escape.cc (revision 36339)
+++ net/base/escape.cc (working copy)
@@ -190,14 +190,11 @@
return Escape(text, kQueryCharmap, use_plus);
}
-std::string EscapeQueryParamValue(const std::string& text) {
- return Escape(text, kQueryCharmap, true);
-}
-
// Convert the string to a sequence of bytes and then % escape anything
// except alphanumerics and !'()*-._~
-std::wstring EscapeQueryParamValueUTF8(const std::wstring& text) {
- return UTF8ToWide(Escape(WideToUTF8(text), kQueryCharmap, true));
+std::wstring EscapeQueryParamValueUTF8(const std::wstring& text,
+ bool use_plus) {
+ return UTF8ToWide(Escape(WideToUTF8(text), kQueryCharmap, use_plus));
}
// non-printable, non-7bit, and (including space) "#%:<>?[\]^`{|}
@@ -239,7 +236,7 @@
}
bool EscapeQueryParamValue(const string16& text, const char* codepage,
- string16* escaped) {
+ bool use_plus, string16* escaped) {
// TODO(brettw) bug 1201094: this function should be removed, this "SKIP"
// behavior is wrong when the character can't be encoded properly.
std::string encoded;
@@ -247,7 +244,7 @@
base::OnStringConversionError::SKIP, &encoded))
return false;
- escaped->assign(UTF8ToUTF16(Escape(encoded, kQueryCharmap, true)));
+ escaped->assign(UTF8ToUTF16(Escape(encoded, kQueryCharmap, use_plus)));
return true;
}
« no previous file with comments | « net/base/escape.h ('k') | net/base/escape_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698