Index: net/http/http_network_transaction_unittest.cc |
diff --git a/net/http/http_network_transaction_unittest.cc b/net/http/http_network_transaction_unittest.cc |
index df1604e169c0ca02872a39b925fe729bc5a94f11..41408bdd5def6ce8b932d7ff1da76bf207d1c913 100644 |
--- a/net/http/http_network_transaction_unittest.cc |
+++ b/net/http/http_network_transaction_unittest.cc |
@@ -43,20 +43,23 @@ class SessionDependencies { |
: host_resolver(new MockHostResolver), |
proxy_service(ProxyService::CreateNull()), |
ssl_config_service(new SSLConfigServiceDefaults), |
- http_auth_handler_factory(HttpAuthHandlerFactory::CreateDefault()) {} |
+ http_auth_handler_factory(HttpAuthHandlerFactory::CreateDefault()), |
+ spdy_session_pool(new SpdySessionPool) {} |
// Custom proxy service dependency. |
explicit SessionDependencies(ProxyService* proxy_service) |
: host_resolver(new MockHostResolver), |
proxy_service(proxy_service), |
ssl_config_service(new SSLConfigServiceDefaults), |
- http_auth_handler_factory(HttpAuthHandlerFactory::CreateDefault()) {} |
+ http_auth_handler_factory(HttpAuthHandlerFactory::CreateDefault()), |
+ spdy_session_pool(new SpdySessionPool) {} |
scoped_refptr<MockHostResolverBase> host_resolver; |
scoped_refptr<ProxyService> proxy_service; |
scoped_refptr<SSLConfigService> ssl_config_service; |
MockClientSocketFactory socket_factory; |
scoped_ptr<HttpAuthHandlerFactory> http_auth_handler_factory; |
+ scoped_refptr<SpdySessionPool> spdy_session_pool; |
}; |
ProxyService* CreateFixedProxyService(const std::string& proxy) { |
@@ -71,6 +74,7 @@ HttpNetworkSession* CreateSession(SessionDependencies* session_deps) { |
session_deps->proxy_service, |
&session_deps->socket_factory, |
session_deps->ssl_config_service, |
+ session_deps->spdy_session_pool, |
session_deps->http_auth_handler_factory.get()); |
} |
@@ -184,7 +188,8 @@ class CaptureGroupNameSocketPool : public EmulatedClientSocketPool { |
CaptureGroupNameSocketPool(HttpNetworkSession* session, |
SocketSourceType* socket_source) |
: EmulatedClientSocketPool(0, 0, "CaptureGroupNameTestPool", |
- session->host_resolver(), socket_source) {} |
+ session->host_resolver(), socket_source, |
+ NULL) {} |
const std::string last_group_name_received() const { |
return last_group_name_; |
} |