| Index: chrome/common/chrome_switches.cc
|
| diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
|
| index 654d67f1720d91c29df2e0c69279a40bb58b0ade..31811165c5268582d0bd824d33cdb862d09d0ce7 100644
|
| --- a/chrome/common/chrome_switches.cc
|
| +++ b/chrome/common/chrome_switches.cc
|
| @@ -418,6 +418,10 @@ const char kDisableQuic[] = "disable-quic";
|
| // testing flag. This only has an effect if QUIC protocol is enabled.
|
| const char kDisableQuicHttps[] = "disable-quic-https";
|
|
|
| +// 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";
|
| +
|
| // Prevents the URLs of BackgroundContents from being remembered and
|
| // re-launched when the browser restarts.
|
| const char kDisableRestoreBackgroundContents[] =
|
| @@ -738,6 +742,10 @@ const char kEnableQuic[] = "enable-quic";
|
| // testing flag. This only has an effect if QUIC protocol is enabled.
|
| const char kEnableQuicHttps[] = "enable-quic-https";
|
|
|
| +// 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";
|
| +
|
| // Enables the Quickoffoce/Chrome document viewer rather than the editor.
|
| const char kEnableQuickofficeViewing[] = "enable-quickoffice-viewing";
|
|
|
|
|