summaryrefslogtreecommitdiffstats
path: root/net/http/http_network_layer.h
diff options
context:
space:
mode:
authorwillchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-04 01:03:10 +0000
committerwillchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-04 01:03:10 +0000
commitd1eda9325775891900b0ed740b2faffbe522fc20 (patch)
treee34789a2b48016864d86674b22f84cf7da33fd61 /net/http/http_network_layer.h
parentebca346eb646c5b714f4efb4f383cb538780f1ae (diff)
downloadchromium_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.h3
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_;
};