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

Unified Diff: chrome/browser/io_thread.cc

Issue 14189003: [SPDY] Incorporate latest framing changes from HTTP2 into SPDY 4 as SPDY 4a2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 7 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: chrome/browser/io_thread.cc
diff --git a/chrome/browser/io_thread.cc b/chrome/browser/io_thread.cc
index 06315719816955cfb2c371c6363c6dbc19d45868..2543bc2f79f3006f6899cd6a64cae556a519efde 100644
--- a/chrome/browser/io_thread.cc
+++ b/chrome/browser/io_thread.cc
@@ -657,8 +657,8 @@ void IOThread::InitializeNetworkOptions(const CommandLine& command_line) {
std::string spdy_mode =
command_line.GetSwitchValueASCII(switches::kUseSpdy);
EnableSpdy(spdy_mode);
- } else if (command_line.HasSwitch(switches::kEnableSpdy4a1)) {
- net::HttpStreamFactory::EnableNpnSpdy4a1();
+ } else if (command_line.HasSwitch(switches::kEnableSpdy4a2)) {
+ net::HttpStreamFactory::EnableNpnSpdy4a2();
} else if (command_line.HasSwitch(switches::kDisableSpdy31)) {
net::HttpStreamFactory::EnableNpnSpdy3();
} else if (command_line.HasSwitch(switches::kEnableNpn)) {

Powered by Google App Engine
This is Rietveld 408576698