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

Unified Diff: net/http/http_pipelined_network_transaction_unittest.cc

Issue 12767006: [Cleanup] Remove StringPrintf from global namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase, once more Created 7 years, 9 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: net/http/http_pipelined_network_transaction_unittest.cc
diff --git a/net/http/http_pipelined_network_transaction_unittest.cc b/net/http/http_pipelined_network_transaction_unittest.cc
index 2fe20f443386a3414bd52ecf2b4ffcb27e52c7ec..a2e9337fbc4f4089e37142b027d947537f02f764 100644
--- a/net/http/http_pipelined_network_transaction_unittest.cc
+++ b/net/http/http_pipelined_network_transaction_unittest.cc
@@ -112,7 +112,7 @@ class HttpPipelinedNetworkTransactionTest : public testing::Test {
HttpRequestInfo* GetRequestInfo(
const char* filename, RequestInfoOptions options = REQUEST_DEFAULT) {
- std::string url = StringPrintf("http://localhost/%s", filename);
+ std::string url = base::StringPrintf("http://localhost/%s", filename);
HttpRequestInfo* request_info = new HttpRequestInfo;
request_info->url = GURL(url);
request_info->method = "GET";

Powered by Google App Engine
This is Rietveld 408576698