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

Unified Diff: chrome/browser/browser_main.cc

Issue 6800009: Attn: Mike Belshe Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 9 years, 8 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
« no previous file with comments | « no previous file | chrome/browser/debugger/devtools_remote.h » ('j') | chrome/browser/debugger/devtools_remote.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_main.cc
===================================================================
--- chrome/browser/browser_main.cc (revision 80449)
+++ chrome/browser/browser_main.cc (working copy)
@@ -232,6 +232,13 @@
if (parsed_command_line().HasSwitch(switches::kEnableTcpFastOpen))
net::set_tcp_fastopen_enabled(true);
+ // Use SCTP transport protocol
+ if (parsed_command_line().HasSwitch(switches::kUseSctp)) {
+ std::string sctp_mode =
+ parsed_command_line().GetSwitchValueASCII(switches::kUseSctp);
+ net::HttpNetworkLayer::EnableSctp(sctp_mode);
+ }
+
PostEarlyInitialization();
}
« no previous file with comments | « no previous file | chrome/browser/debugger/devtools_remote.h » ('j') | chrome/browser/debugger/devtools_remote.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698