From 7ce4571ef61711d3bc926504f9fe195147ea1406 Mon Sep 17 00:00:00 2001 From: "rtenneti@google.com" Date: Wed, 22 Aug 2012 22:52:11 +0000 Subject: SPDY - Alternate-Protocol to be enabled when SPDY/3 protocol is negotiated. Made this small change (set use_alternate_protocols_ to true for SPDY/3) so that we can merge into other branches. BUG=143963 R=willchan TEST=network unit tests Review URL: https://chromiumcodereview.appspot.com/10877003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@152853 0039d316-1c4b-4281-b951-d872f2087c98 --- net/http/http_stream_factory.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'net/http/http_stream_factory.cc') diff --git a/net/http/http_stream_factory.cc b/net/http/http_stream_factory.cc index 2d87bc7..ca3b294 100644 --- a/net/http/http_stream_factory.cc +++ b/net/http/http_stream_factory.cc @@ -170,6 +170,7 @@ void HttpStreamFactory::EnableNpnHttpOnly() { // static void HttpStreamFactory::EnableNpnSpdy3() { + set_use_alternate_protocols(true); std::vector next_protos; next_protos.push_back("http/1.1"); next_protos.push_back("spdy/2"); -- cgit v1.1