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

Unified Diff: chrome/browser/extensions/extension_updater.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/dom_ui/history_ui.cc ('k') | chrome/browser/safe_browsing/protocol_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_updater.cc
===================================================================
--- chrome/browser/extensions/extension_updater.cc (revision 36339)
+++ chrome/browser/extensions/extension_updater.cc (working copy)
@@ -472,7 +472,7 @@
parts.push_back("v=" + version->GetString());
parts.push_back("uc");
- str->append("x=" + EscapeQueryParamValue(JoinString(parts, '&')));
+ str->append("x=" + EscapeQueryParamValue(JoinString(parts, '&'), true));
}
// Creates a blacklist update url.
@@ -480,7 +480,7 @@
std::string blklist_info = StringPrintf("id=%s&v=%s&uc", kBlacklistAppID,
WideToASCII(version).c_str());
return GURL(StringPrintf("%s?x=%s", kBlacklistUpdateUrl,
- EscapeQueryParamValue(blklist_info).c_str()));
+ EscapeQueryParamValue(blklist_info, true).c_str()));
}
void ExtensionUpdater::ScheduleNextCheck(const TimeDelta& target_delay) {
@@ -575,7 +575,7 @@
std::string uid = uid_provider_->GetUidString();
if (uid.length() > 0 && uid.length() <= UidProvider::maxUidLength) {
full_url_string.append("&" + std::string(ExtensionUpdater::kUidKey) +
- "=" + EscapeQueryParamValue(uid));
+ "=" + EscapeQueryParamValue(uid, true));
}
}
« no previous file with comments | « chrome/browser/dom_ui/history_ui.cc ('k') | chrome/browser/safe_browsing/protocol_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698