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

Unified Diff: extensions/browser/updater/manifest_fetch_data.cc

Issue 1223153003: Move JoinString to the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: windows Created 5 years, 5 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: extensions/browser/updater/manifest_fetch_data.cc
diff --git a/extensions/browser/updater/manifest_fetch_data.cc b/extensions/browser/updater/manifest_fetch_data.cc
index 6511a1eb6a8d0537f752d1f24065059536cf9ba2..f72f32efcbc94f5220166c2469d421757e418474 100644
--- a/extensions/browser/updater/manifest_fetch_data.cc
+++ b/extensions/browser/updater/manifest_fetch_data.cc
@@ -143,7 +143,8 @@ bool ManifestFetchData::AddExtension(const std::string& id,
}
std::string extra = full_url_.has_query() ? "&" : "?";
- extra += "x=" + net::EscapeQueryParamValue(JoinString(parts, '&'), true);
+ extra +=
+ "x=" + net::EscapeQueryParamValue(base::JoinString(parts, "&"), true);
// Check against our max url size, exempting the first extension added.
int new_size = full_url_.possibly_invalid_spec().size() + extra.size();
« no previous file with comments | « extensions/browser/updater/extension_downloader.cc ('k') | extensions/common/api/sockets/sockets_manifest_permission.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698