Index: net/http/http_network_layer_unittest.cc |
=================================================================== |
--- net/http/http_network_layer_unittest.cc (revision 48758) |
+++ net/http/http_network_layer_unittest.cc (working copy) |
@@ -18,7 +18,7 @@ |
TEST_F(HttpNetworkLayerTest, CreateAndDestroy) { |
net::HttpNetworkLayer factory( |
NULL, NULL, new net::MockHostResolver, net::ProxyService::CreateNull(), |
- new net::SSLConfigServiceDefaults, NULL); |
+ new net::SSLConfigServiceDefaults, NULL, NULL); |
scoped_ptr<net::HttpTransaction> trans; |
int rv = factory.CreateTransaction(&trans); |
@@ -29,7 +29,7 @@ |
TEST_F(HttpNetworkLayerTest, Suspend) { |
net::HttpNetworkLayer factory( |
NULL, NULL, new net::MockHostResolver, net::ProxyService::CreateNull(), |
- new net::SSLConfigServiceDefaults, NULL); |
+ new net::SSLConfigServiceDefaults, NULL, NULL); |
scoped_ptr<net::HttpTransaction> trans; |
int rv = factory.CreateTransaction(&trans); |
@@ -71,7 +71,7 @@ |
new net::MockHostResolver, |
net::ProxyService::CreateNull(), |
new net::SSLConfigServiceDefaults, |
- NULL); |
+ NULL, NULL); |
TestCompletionCallback callback; |