Chromium Code Reviews| Index: net/http/http_stream_factory_impl.cc |
| =================================================================== |
| --- net/http/http_stream_factory_impl.cc (revision 119096) |
| +++ net/http/http_stream_factory_impl.cc (working copy) |
| @@ -156,7 +156,7 @@ |
| DCHECK_LE(NPN_SPDY_1, alternate.protocol); |
| DCHECK_GT(NUM_ALTERNATE_PROTOCOLS, alternate.protocol); |
| - if (alternate.protocol != NPN_SPDY_2) |
| + if (alternate.protocol != NPN_SPDY_2 && alternate.protocol != NPN_SPDY_21) |
|
wtc
2012/01/26 00:13:26
Can we test for a range of protocol version here t
ramant (doing other things)
2012/01/26 18:58:48
Done.
|
| return false; |
| // Some shared unix systems may have user home directories (like |