summaryrefslogtreecommitdiffstats
path: root/chrome/browser/net/http_pipelining_compatibility_client_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/net/http_pipelining_compatibility_client_unittest.cc')
-rw-r--r--chrome/browser/net/http_pipelining_compatibility_client_unittest.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/net/http_pipelining_compatibility_client_unittest.cc b/chrome/browser/net/http_pipelining_compatibility_client_unittest.cc
index 7f33790..f582d1b 100644
--- a/chrome/browser/net/http_pipelining_compatibility_client_unittest.cc
+++ b/chrome/browser/net/http_pipelining_compatibility_client_unittest.cc
@@ -118,8 +118,10 @@ class HttpPipeliningCompatibilityClientTest : public testing::Test {
HttpPipeliningCompatibilityClient::Options options) {
HttpPipeliningCompatibilityClient client(NULL);
net::TestCompletionCallback callback;
- client.Start(test_server_.GetURL("").spec(),
- requests, options, callback.callback(),
+ client.Start(test_server_.GetURL(std::string()).spec(),
+ requests,
+ options,
+ callback.callback(),
context_->GetURLRequestContext());
callback.WaitForResult();
}