| Index: net/http/http_network_layer.cc
|
| ===================================================================
|
| --- net/http/http_network_layer.cc (revision 124201)
|
| +++ net/http/http_network_layer.cc (working copy)
|
| @@ -101,7 +101,6 @@
|
| std::vector<std::string> next_protos;
|
| next_protos.push_back("http/1.1");
|
| next_protos.push_back("spdy/2");
|
| - next_protos.push_back("spdy/2.1");
|
| HttpStreamFactory::set_next_protos(next_protos);
|
| } else if (option == kEnableNpnHttpOnly) {
|
| // Avoid alternate protocol in this case. Otherwise, browser will try SSL
|
| @@ -130,8 +129,9 @@
|
| } else if (option == kForceAltProtocols) {
|
| PortAlternateProtocolPair pair;
|
| pair.port = 443;
|
| - pair.protocol = NPN_SPDY_21;
|
| + pair.protocol = NPN_SPDY_2;
|
| HttpServerPropertiesImpl::ForceAlternateProtocol(pair);
|
| + HttpStreamFactory::set_highest_supported_alternate_protocol(NPN_SPDY_2);
|
| } else if (option == kSingleDomain) {
|
| SpdySessionPool::ForceSingleDomain();
|
| LOG(ERROR) << "FORCING SINGLE DOMAIN";
|
|
|