diff options
author | rch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-30 02:56:46 +0000 |
---|---|---|
committer | rch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-30 02:56:46 +0000 |
commit | 443a30ede1119db123d363375392113c7b08e368 (patch) | |
tree | 5c2246ba0499954b65fe24added32b125c1fe73b /net/http/http_network_layer.h | |
parent | 0387a715395fbc9f132cf857804fb0c858744254 (diff) | |
download | chromium_src-443a30ede1119db123d363375392113c7b08e368.zip chromium_src-443a30ede1119db123d363375392113c7b08e368.tar.gz chromium_src-443a30ede1119db123d363375392113c7b08e368.tar.bz2 |
Move EnableSpdy from HttpNetworkLayer to IOThread.
Add HttpNetworkLayer::ForceAlternateProtocol()
BUG=162571
Review URL: https://chromiumcodereview.appspot.com/11416205
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170373 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_network_layer.h')
-rw-r--r-- | net/http/http_network_layer.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/net/http/http_network_layer.h b/net/http/http_network_layer.h index d9eb676..52e5ad6 100644 --- a/net/http/http_network_layer.h +++ b/net/http/http_network_layer.h @@ -36,15 +36,9 @@ class NET_EXPORT HttpNetworkLayer // when network session is shared. static HttpTransactionFactory* CreateFactory(HttpNetworkSession* session); - // Enable the spdy protocol. - // Without calling this function, SPDY is disabled. The mode can be: - // "" : (default) SSL and compression are enabled, flow - // control disabled. - // "no-ssl" : disables SSL. - // "no-compress" : disables compression. - // "flow-control": enables flow control. - // "none" : disables both SSL and compression. - static void EnableSpdy(const std::string& mode); + // Forces an alternate protocol of SPDY/2 on port 443. + // TODO(rch): eliminate this method. + static void ForceAlternateProtocol(); // HttpTransactionFactory methods: virtual int CreateTransaction(scoped_ptr<HttpTransaction>* trans, |