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

Unified Diff: chrome/service/net/service_url_request_context.cc

Issue 4974001: base: Get rid of 'using' declaration of StringAppendF. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 10 years, 1 month 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/service/net/service_url_request_context.cc
diff --git a/chrome/service/net/service_url_request_context.cc b/chrome/service/net/service_url_request_context.cc
index 1df288d7ee1d43b8e3d0131a74db494a5c773ea8..c7268f5b34154e19ce7df4b5700613153a3fa6f9 100644
--- a/chrome/service/net/service_url_request_context.cc
+++ b/chrome/service/net/service_url_request_context.cc
@@ -55,7 +55,7 @@ std::string BuildOSCpuInfo() {
}
#endif
- StringAppendF(
+ base::StringAppendF(
&os_cpu,
#if defined(OS_WIN)
"Windows NT %d.%d",
@@ -91,12 +91,12 @@ std::string MakeUserAgentForServiceProcess() {
std::string extra_version_info;
if (!version_info.IsOfficialBuild())
extra_version_info = "-devel";
- StringAppendF(&user_agent,
- "Chrome Service %s(%s)%s %s ",
- version_info.Version().c_str(),
- version_info.LastChange().c_str(),
- extra_version_info.c_str(),
- BuildOSCpuInfo().c_str());
+ base::StringAppendF(&user_agent,
+ "Chrome Service %s(%s)%s %s ",
+ version_info.Version().c_str(),
+ version_info.LastChange().c_str(),
+ extra_version_info.c_str(),
+ BuildOSCpuInfo().c_str());
return user_agent;
}
« no previous file with comments | « chrome/service/cloud_print/cloud_print_url_fetcher.cc ('k') | chrome/test/automation/automation_proxy_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698