| 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 754 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 765 // instant-extended-api, where thumbnails are generally smaller. | 765 // instant-extended-api, where thumbnails are generally smaller. |
| 766 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; | 766 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; |
| 767 | 767 |
| 768 // Enables Translate experimental new UX which replaces the infobar. | 768 // Enables Translate experimental new UX which replaces the infobar. |
| 769 const char kEnableTranslateNewUX[] = "enable-translate-new-ux"; | 769 const char kEnableTranslateNewUX[] = "enable-translate-new-ux"; |
| 770 | 770 |
| 771 // Enables unrestricted SSL 3.0 fallback. | 771 // Enables unrestricted SSL 3.0 fallback. |
| 772 // With this switch, SSL 3.0 fallback will be enabled for all sites. | 772 // With this switch, SSL 3.0 fallback will be enabled for all sites. |
| 773 // Without this switch, SSL 3.0 fallback will be disabled for a site | 773 // Without this switch, SSL 3.0 fallback will be disabled for a site |
| 774 // pinned to the Google pin list (indicating that it is a Google site). | 774 // pinned to the Google pin list (indicating that it is a Google site). |
| 775 // Note: until http://crbug/237055 is resolved, unrestricted SSL 3.0 |
| 776 // fallback is always enabled, with or without this switch. |
| 775 const char kEnableUnrestrictedSSL3Fallback[] = | 777 const char kEnableUnrestrictedSSL3Fallback[] = |
| 776 "enable-unrestricted-ssl3-fallback"; | 778 "enable-unrestricted-ssl3-fallback"; |
| 777 | 779 |
| 778 // Enables Alternate-Protocol when the port is user controlled (> 1024). | 780 // Enables Alternate-Protocol when the port is user controlled (> 1024). |
| 779 const char kEnableUserAlternateProtocolPorts[] = | 781 const char kEnableUserAlternateProtocolPorts[] = |
| 780 "enable-user-controlled-alternate-protocol-ports"; | 782 "enable-user-controlled-alternate-protocol-ports"; |
| 781 | 783 |
| 782 // Spawns threads to watch for excessive delays in specified message loops. | 784 // Spawns threads to watch for excessive delays in specified message loops. |
| 783 // User should set breakpoints on Alarm() to examine problematic thread. | 785 // User should set breakpoints on Alarm() to examine problematic thread. |
| 784 // | 786 // |
| (...skipping 841 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1626 | 1628 |
| 1627 // ----------------------------------------------------------------------------- | 1629 // ----------------------------------------------------------------------------- |
| 1628 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1630 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1629 // | 1631 // |
| 1630 // You were going to just dump your switches here, weren't you? Instead, please | 1632 // You were going to just dump your switches here, weren't you? Instead, please |
| 1631 // put them in alphabetical order above, or in order inside the appropriate | 1633 // put them in alphabetical order above, or in order inside the appropriate |
| 1632 // ifdef at the bottom. The order should match the header. | 1634 // ifdef at the bottom. The order should match the header. |
| 1633 // ----------------------------------------------------------------------------- | 1635 // ----------------------------------------------------------------------------- |
| 1634 | 1636 |
| 1635 } // namespace switches | 1637 } // namespace switches |
| OLD | NEW |