OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
6 | 6 |
7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
417 // Disables support for the HTTPS over QUIC protocol. This is a temporary | 417 // Disables support for the HTTPS over QUIC protocol. This is a temporary |
418 // testing flag. This only has an effect if QUIC protocol is enabled. | 418 // testing flag. This only has an effect if QUIC protocol is enabled. |
419 const char kDisableQuicHttps[] = "disable-quic-https"; | 419 const char kDisableQuicHttps[] = "disable-quic-https"; |
420 | 420 |
421 // Disable use of pacing of QUIC packets. | 421 // Disable use of pacing of QUIC packets. |
422 // This only has an effect if QUIC protocol is enabled. | 422 // This only has an effect if QUIC protocol is enabled. |
423 const char kDisableQuicPacing[] = "disable-quic-pacing"; | 423 const char kDisableQuicPacing[] = "disable-quic-pacing"; |
424 | 424 |
425 // Disable use of Chromium's port selection for the ephemeral port via bind(). | 425 // Disable use of Chromium's port selection for the ephemeral port via bind(). |
426 // This only has an effect if QUIC protocol is enabled. | 426 // This only has an effect if QUIC protocol is enabled. |
427 const char kDisableQuicPortSelection[] = "disable-quic-port_selection"; | 427 const char kDisableQuicPortSelection[] = "disable-quic-port-selection"; |
428 | 428 |
429 // Prevents the URLs of BackgroundContents from being remembered and | 429 // Prevents the URLs of BackgroundContents from being remembered and |
430 // re-launched when the browser restarts. | 430 // re-launched when the browser restarts. |
431 const char kDisableRestoreBackgroundContents[] = | 431 const char kDisableRestoreBackgroundContents[] = |
432 "disable-restore-background-contents"; | 432 "disable-restore-background-contents"; |
433 | 433 |
434 // Disables restoring session state (cookies, session storage, etc.) when | 434 // Disables restoring session state (cookies, session storage, etc.) when |
435 // restoring the browsing session. | 435 // restoring the browsing session. |
436 const char kDisableRestoreSessionState[] = "disable-restore-session-state"; | 436 const char kDisableRestoreSessionState[] = "disable-restore-session-state"; |
437 | 437 |
(...skipping 1229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1667 | 1667 |
1668 // ----------------------------------------------------------------------------- | 1668 // ----------------------------------------------------------------------------- |
1669 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1669 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1670 // | 1670 // |
1671 // You were going to just dump your switches here, weren't you? Instead, please | 1671 // You were going to just dump your switches here, weren't you? Instead, please |
1672 // put them in alphabetical order above, or in order inside the appropriate | 1672 // put them in alphabetical order above, or in order inside the appropriate |
1673 // ifdef at the bottom. The order should match the header. | 1673 // ifdef at the bottom. The order should match the header. |
1674 // ----------------------------------------------------------------------------- | 1674 // ----------------------------------------------------------------------------- |
1675 | 1675 |
1676 } // namespace switches | 1676 } // namespace switches |
OLD | NEW |