Index: net/spdy/spdy_network_transaction_unittest.cc |
diff --git a/net/spdy/spdy_network_transaction_unittest.cc b/net/spdy/spdy_network_transaction_unittest.cc |
index 377c7a5137bd9abb5ca1ac0ebf1b9f9366b8cfd0..fb0690690146e32b783d77e2ffe071aa0e941f3c 100644 |
--- a/net/spdy/spdy_network_transaction_unittest.cc |
+++ b/net/spdy/spdy_network_transaction_unittest.cc |
@@ -54,8 +54,7 @@ class SessionDependencies { |
: host_resolver(new MockHostResolver), |
proxy_service(ProxyService::CreateNull()), |
ssl_config_service(new SSLConfigServiceDefaults), |
- http_auth_handler_factory(HttpAuthHandlerFactory::CreateDefault()), |
- spdy_session_pool(new SpdySessionPool) { |
+ http_auth_handler_factory(HttpAuthHandlerFactory::CreateDefault()) { |
// Note: The CancelledTransaction test does cleanup by running all tasks |
// in the message loop (RunAllPending). Unfortunately, that doesn't clean |
// up tasks on the host resolver thread; and TCPConnectJob is currently |
@@ -70,15 +69,13 @@ class SessionDependencies { |
: host_resolver(new MockHostResolver), |
proxy_service(proxy_service), |
ssl_config_service(new SSLConfigServiceDefaults), |
- http_auth_handler_factory(HttpAuthHandlerFactory::CreateDefault()), |
- spdy_session_pool(new SpdySessionPool) {} |
+ http_auth_handler_factory(HttpAuthHandlerFactory::CreateDefault()) {} |
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; |
}; |
HttpNetworkSession* CreateSession(SessionDependencies* session_deps) { |
@@ -87,7 +84,6 @@ 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()); |
} |