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

Unified Diff: net/socket/ssl_client_socket_pool.h

Issue 14471023: Refactor pooled socket request code to prepare for implementation of pretend-to-preconnect. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 8 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/socket/client_socket_pool_manager.cc ('k') | net/socket/ssl_client_socket_pool.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/ssl_client_socket_pool.h
diff --git a/net/socket/ssl_client_socket_pool.h b/net/socket/ssl_client_socket_pool.h
index e6e291e43a2111ef20296b40f1f99f0327bc580b..e1156374fe3c5f9aa93de03390aed8dd9190797a 100644
--- a/net/socket/ssl_client_socket_pool.h
+++ b/net/socket/ssl_client_socket_pool.h
@@ -49,6 +49,29 @@ class NET_EXPORT_PRIVATE SSLSocketParams
bool force_spdy_over_ssl,
bool want_spdy_over_npn);
+ SSLSocketParams(const scoped_refptr<TransportSocketParams>& transport_params,
mmenke 2013/04/29 16:15:46 I think this is actually worse than the old code.
kouhei (in TOK) 2013/04/30 01:38:33 Made static factory methods.
+ const HostPortPair& host_and_port,
+ const SSLConfig& ssl_config,
+ int load_flags,
+ bool force_spdy_over_ssl,
+ bool want_spdy_over_npn);
+
+ SSLSocketParams(const scoped_refptr<HttpProxySocketParams>& http_proxy_params,
+ ProxyServer::Scheme proxy,
+ const HostPortPair& host_and_port,
+ const SSLConfig& ssl_config,
+ int load_flags,
+ bool force_spdy_over_ssl,
+ bool want_spdy_over_npn);
+
+ SSLSocketParams(const scoped_refptr<SOCKSSocketParams>& socks_params_,
+ ProxyServer::Scheme proxy,
+ const HostPortPair& host_and_port,
+ const SSLConfig& ssl_config,
+ int load_flags,
+ bool force_spdy_over_ssl,
+ bool want_spdy_over_npn);
+
const scoped_refptr<TransportSocketParams>& transport_params() {
return transport_params_;
}
« no previous file with comments | « net/socket/client_socket_pool_manager.cc ('k') | net/socket/ssl_client_socket_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698