diff options
Diffstat (limited to 'net/spdy')
-rw-r--r-- | net/spdy/spdy_network_transaction_unittest.cc | 3 | ||||
-rw-r--r-- | net/spdy/spdy_session_unittest.cc | 1 | ||||
-rw-r--r-- | net/spdy/spdy_stream_unittest.cc | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/net/spdy/spdy_network_transaction_unittest.cc b/net/spdy/spdy_network_transaction_unittest.cc index add273b..e8278a5 100644 --- a/net/spdy/spdy_network_transaction_unittest.cc +++ b/net/spdy/spdy_network_transaction_unittest.cc @@ -87,7 +87,8 @@ HttpNetworkSession* CreateSession(SessionDependencies* session_deps) { &session_deps->socket_factory, session_deps->ssl_config_service, session_deps->spdy_session_pool, - session_deps->http_auth_handler_factory.get()); + session_deps->http_auth_handler_factory.get(), + NULL); } // Chop a frame into an array of MockWrites. diff --git a/net/spdy/spdy_session_unittest.cc b/net/spdy/spdy_session_unittest.cc index ab7b12c..d022232 100644 --- a/net/spdy/spdy_session_unittest.cc +++ b/net/spdy/spdy_session_unittest.cc @@ -55,6 +55,7 @@ HttpNetworkSession* CreateSession(SessionDependencies* session_deps) { &session_deps->socket_factory, session_deps->ssl_config_service, session_deps->spdy_session_pool, + NULL, NULL); } diff --git a/net/spdy/spdy_stream_unittest.cc b/net/spdy/spdy_stream_unittest.cc index 3da9da73..84db904 100644 --- a/net/spdy/spdy_stream_unittest.cc +++ b/net/spdy/spdy_stream_unittest.cc @@ -78,7 +78,8 @@ HttpNetworkSession* CreateSession(SessionDependencies* session_deps) { &session_deps->socket_factory, session_deps->ssl_config_service, session_deps->spdy_session_pool, - session_deps->http_auth_handler_factory.get()); + session_deps->http_auth_handler_factory.get(), + NULL); } class SpdyStreamTest : public testing::Test { |