Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(738)

Unified Diff: net/http/http_stream_factory_impl.cc

Issue 9252029: SPDY - default to SPDY/2.1 protocol in unittests (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: small comment fix to ssl.h Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)
return false;
// Some shared unix systems may have user home directories (like

Powered by Google App Engine
This is Rietveld 408576698