diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-04 01:03:10 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-04 01:03:10 +0000 |
commit | d1eda9325775891900b0ed740b2faffbe522fc20 (patch) | |
tree | e34789a2b48016864d86674b22f84cf7da33fd61 /net/http/http_network_layer.h | |
parent | ebca346eb646c5b714f4efb4f383cb538780f1ae (diff) | |
download | chromium_src-d1eda9325775891900b0ed740b2faffbe522fc20.zip chromium_src-d1eda9325775891900b0ed740b2faffbe522fc20.tar.gz chromium_src-d1eda9325775891900b0ed740b2faffbe522fc20.tar.bz2 |
Flip: FlipSessionPool changes.
(1) Move it into the HttpNetworkSession so that HttpNetworkTransaction can access it.
This is in anticipation of switching HTTP/HTTPS connections over to FLIP.
(2) Add some more functionality to FlipSessionPool, allowing HttpNetworkTransactions to check for
the existence of other, reusable FlipSessions.
Review URL: http://codereview.chromium.org/348066
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30909 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_network_layer.h')
-rw-r--r-- | net/http/http_network_layer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/http/http_network_layer.h b/net/http/http_network_layer.h index 84f966d..e40be8c 100644 --- a/net/http/http_network_layer.h +++ b/net/http/http_network_layer.h @@ -14,6 +14,7 @@ namespace net { class ClientSocketFactory; +class FlipSessionPool; class HostResolver; class HttpNetworkSession; class ProxyInfo; @@ -73,6 +74,8 @@ class HttpNetworkLayer : public HttpTransactionFactory { scoped_refptr<SSLConfigService> ssl_config_service_; scoped_refptr<HttpNetworkSession> session_; + scoped_refptr<FlipSessionPool> flip_session_pool_; + bool suspended_; static bool enable_flip_; }; |