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

Unified Diff: chrome/common/chrome_switches.cc

Issue 185083002: Avoid persisting of QUIC server config information in Stable and Beta (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Persisting of QUIC server config information Created 6 years, 10 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/common/chrome_switches.cc
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
index 415d583fe87efd9d406bc123f11b691210012658..4328254222a69e19d7d5a85a6e52c67bc321f0d1 100644
--- a/chrome/common/chrome_switches.cc
+++ b/chrome/common/chrome_switches.cc
@@ -422,9 +422,14 @@ const char kDisableQuicHttps[] = "disable-quic-https";
// This only has an effect if QUIC protocol is enabled.
const char kDisableQuicPacing[] = "disable-quic-pacing";
+// Disable use of Chromium's persisting of QUIC server config information.
+// This only has an effect if QUIC protocol is enabled.
+const char kDisableQuicPersistServerInfo[] =
+ "disable-quic-persist-server_info";
+
Ryan Hamilton 2014/03/01 00:38:27 I don't think I would add these flags. I don't th
ramant (doing other things) 2014/03/01 01:22:22 Done.
// Disable use of Chromium's port selection for the ephemeral port via bind().
// This only has an effect if QUIC protocol is enabled.
-const char kDisableQuicPortSelection[] = "disable-quic-port_selection";
+const char kDisableQuicPortSelection[] = "disable-quic-port-selection";
Ryan Hamilton 2014/03/01 00:38:27 hah! nice catch!
ramant (doing other things) 2014/03/01 01:22:22 Thanks much.
// Prevents the URLs of BackgroundContents from being remembered and
// re-launched when the browser restarts.
@@ -732,6 +737,10 @@ const char kEnableQuicHttps[] = "enable-quic-https";
// This only has an effect if QUIC protocol is enabled.
const char kEnableQuicPacing[] = "enable-quic-pacing";
+// Enable use of Chromium's persisting of QUIC server config information.
+// This only has an effect if QUIC protocol is enabled.
+const char kEnableQuicPersistServerInfo[] = "enable-quic-persist-server-info";
+
// Enable use of Chromium's port selection for the ephemeral port via bind().
// This only has an effect if QUIC protocol is enabled.
const char kEnableQuicPortSelection[] = "enable-quic-port-selection";
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | net/http/http_cache.h » ('j') | net/http/http_cache.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698