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 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
700 // Enables synced articles. | 700 // Enables synced articles. |
701 const char kEnableSyncArticles[] = "enable-sync-articles"; | 701 const char kEnableSyncArticles[] = "enable-sync-articles"; |
702 | 702 |
703 // Enables fanciful thumbnail processing. Used with NTP for | 703 // Enables fanciful thumbnail processing. Used with NTP for |
704 // instant-extended-api, where thumbnails are generally smaller. | 704 // instant-extended-api, where thumbnails are generally smaller. |
705 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; | 705 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; |
706 | 706 |
707 // Enables Translate experimental new UX which replaces the infobar. | 707 // Enables Translate experimental new UX which replaces the infobar. |
708 const char kEnableTranslateNewUX[] = "enable-translate-new-ux"; | 708 const char kEnableTranslateNewUX[] = "enable-translate-new-ux"; |
709 | 709 |
710 // Enables unrestricted SSL 3.0 fallback. | |
711 // With this switch, SSL 3.0 fallback will be enabled for all sites. | |
712 // Without this switch, SSL 3.0 fallback will be disabled for a site | |
713 // pinned to the Google pin list (indicating that it is a Google site). | |
714 const char kEnableUnrestrictedSSL3Fallback[] = | |
715 "enable-unrestricted-ssl3-fallback"; | |
716 | |
717 // Enables Alternate-Protocol when the port is user controlled (> 1024). | 710 // Enables Alternate-Protocol when the port is user controlled (> 1024). |
718 const char kEnableUserAlternateProtocolPorts[] = | 711 const char kEnableUserAlternateProtocolPorts[] = |
719 "enable-user-controlled-alternate-protocol-ports"; | 712 "enable-user-controlled-alternate-protocol-ports"; |
720 | 713 |
721 // Spawns threads to watch for excessive delays in specified message loops. | 714 // Spawns threads to watch for excessive delays in specified message loops. |
722 // User should set breakpoints on Alarm() to examine problematic thread. | 715 // User should set breakpoints on Alarm() to examine problematic thread. |
723 // | 716 // |
724 // Usage: -enable-watchdog=[ui][io] | 717 // Usage: -enable-watchdog=[ui][io] |
725 // | 718 // |
726 // Order of the listed sub-arguments does not matter. | 719 // Order of the listed sub-arguments does not matter. |
(...skipping 807 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1534 | 1527 |
1535 // ----------------------------------------------------------------------------- | 1528 // ----------------------------------------------------------------------------- |
1536 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1529 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1537 // | 1530 // |
1538 // You were going to just dump your switches here, weren't you? Instead, please | 1531 // You were going to just dump your switches here, weren't you? Instead, please |
1539 // put them in alphabetical order above, or in order inside the appropriate | 1532 // put them in alphabetical order above, or in order inside the appropriate |
1540 // ifdef at the bottom. The order should match the header. | 1533 // ifdef at the bottom. The order should match the header. |
1541 // ----------------------------------------------------------------------------- | 1534 // ----------------------------------------------------------------------------- |
1542 | 1535 |
1543 } // namespace switches | 1536 } // namespace switches |
OLD | NEW |