Chromium Code Reviews| 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"; |