Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(216)

Unified Diff: net/http/http_proxy_client_socket_pool.h

Issue 2899313006: Plumb NQP to context and to http_proxy_client_socket_pool (Closed)
Patch Set: fix compile error Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/http/http_network_transaction_unittest.cc ('k') | net/http/http_proxy_client_socket_pool.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_proxy_client_socket_pool.h
diff --git a/net/http/http_proxy_client_socket_pool.h b/net/http/http_proxy_client_socket_pool.h
index 8bea4691af4162ff70fa8a7471fba49b42716933..bf6dede8bea02c2e8b8006497bb17335cce21964 100644
--- a/net/http/http_proxy_client_socket_pool.h
+++ b/net/http/http_proxy_client_socket_pool.h
@@ -28,6 +28,7 @@ class HttpAuthCache;
class HttpAuthHandlerFactory;
class HttpProxyClientSocketWrapper;
class NetLog;
+class NetworkQualityProvider;
class ProxyDelegate;
class SSLClientSocketPool;
class SSLSocketParams;
@@ -143,6 +144,7 @@ class NET_EXPORT_PRIVATE HttpProxyClientSocketPool
int max_sockets_per_group,
TransportClientSocketPool* transport_pool,
SSLClientSocketPool* ssl_pool,
+ NetworkQualityProvider* network_quality_provider,
NetLog* net_log);
~HttpProxyClientSocketPool() override;
@@ -209,6 +211,7 @@ class NET_EXPORT_PRIVATE HttpProxyClientSocketPool
public:
HttpProxyConnectJobFactory(TransportClientSocketPool* transport_pool,
SSLClientSocketPool* ssl_pool,
+ NetworkQualityProvider* network_quality_provider,
NetLog* net_log);
// ClientSocketPoolBase::ConnectJobFactory methods.
@@ -222,8 +225,8 @@ class NET_EXPORT_PRIVATE HttpProxyClientSocketPool
private:
TransportClientSocketPool* const transport_pool_;
SSLClientSocketPool* const ssl_pool_;
+ NetworkQualityProvider* network_quality_provider_;
NetLog* net_log_;
- base::TimeDelta timeout_;
DISALLOW_COPY_AND_ASSIGN(HttpProxyConnectJobFactory);
};
« no previous file with comments | « net/http/http_network_transaction_unittest.cc ('k') | net/http/http_proxy_client_socket_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698