diff options
Diffstat (limited to 'net/http/http_network_transaction_unittest.cc')
-rw-r--r-- | net/http/http_network_transaction_unittest.cc | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/net/http/http_network_transaction_unittest.cc b/net/http/http_network_transaction_unittest.cc index 4a71ab1..3b977bd 100644 --- a/net/http/http_network_transaction_unittest.cc +++ b/net/http/http_network_transaction_unittest.cc @@ -31,17 +31,8 @@ //----------------------------------------------------------------------------- -// TODO(eroman): Add a regression test for http://crbug.com/32316 -- when the -// proxy service returns an error, we should fallback to DIRECT instead of -// failing with ERR_NO_SUPPORTED_PROXIES. - namespace net { -// Create a proxy service which fails on all requests (falls back to direct). -ProxyService* CreateNullProxyService() { - return ProxyService::CreateNull(); -} - // Helper to manage the lifetimes of the dependencies for a // HttpNetworkTransaction. class SessionDependencies { @@ -49,7 +40,7 @@ class SessionDependencies { // Default set of dependencies -- "null" proxy service. SessionDependencies() : host_resolver(new MockHostResolver), - proxy_service(CreateNullProxyService()), + proxy_service(ProxyService::CreateNull()), ssl_config_service(new SSLConfigServiceDefaults), flip_session_pool(new FlipSessionPool) {} |