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

Unified Diff: net/http/http_util.cc

Issue 4974001: base: Get rid of 'using' declaration of StringAppendF. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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: net/http/http_util.cc
diff --git a/net/http/http_util.cc b/net/http/http_util.cc
index a3d1ec5e832e5154384ad1c063f710d1ea653e20..1f57d702380648d4b4cf497cb8283186d5b5d9ef 100644
--- a/net/http/http_util.cc
+++ b/net/http/http_util.cc
@@ -590,8 +590,8 @@ std::string HttpUtil::GenerateAcceptLanguageHeader(
lang_list_with_q = language;
} else {
DCHECK_LT(qvalue10, 10U);
- StringAppendF(&lang_list_with_q, ",%s;q=0.%d", language.c_str(),
- qvalue10);
+ base::StringAppendF(&lang_list_with_q, ",%s;q=0.%d", language.c_str(),
+ qvalue10);
}
// It does not make sense to have 'q=0'.
if (qvalue10 > kQvalueDecrement10)

Powered by Google App Engine
This is Rietveld 408576698