Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 23523016: net: don't allow SSLv3 fallback for Google properties. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 723 matching lines...) Expand 10 before | Expand all | Expand 10 after
734 // instant-extended-api, where thumbnails are generally smaller. 734 // instant-extended-api, where thumbnails are generally smaller.
735 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; 735 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting";
736 736
737 // Enables Translate experimental new UX which replaces the infobar. 737 // Enables Translate experimental new UX which replaces the infobar.
738 const char kEnableTranslateNewUX[] = "enable-translate-new-ux"; 738 const char kEnableTranslateNewUX[] = "enable-translate-new-ux";
739 739
740 // Enables unrestricted SSL 3.0 fallback. 740 // Enables unrestricted SSL 3.0 fallback.
741 // With this switch, SSL 3.0 fallback will be enabled for all sites. 741 // With this switch, SSL 3.0 fallback will be enabled for all sites.
742 // Without this switch, SSL 3.0 fallback will be disabled for a site 742 // Without this switch, SSL 3.0 fallback will be disabled for a site
743 // pinned to the Google pin list (indicating that it is a Google site). 743 // pinned to the Google pin list (indicating that it is a Google site).
744 // Note: until http://crbug/237055 is resolved, unrestricted SSL 3.0
745 // fallback is always enabled, with or without this switch.
746 const char kEnableUnrestrictedSSL3Fallback[] = 744 const char kEnableUnrestrictedSSL3Fallback[] =
747 "enable-unrestricted-ssl3-fallback"; 745 "enable-unrestricted-ssl3-fallback";
748 746
749 // Enables Alternate-Protocol when the port is user controlled (> 1024). 747 // Enables Alternate-Protocol when the port is user controlled (> 1024).
750 const char kEnableUserAlternateProtocolPorts[] = 748 const char kEnableUserAlternateProtocolPorts[] =
751 "enable-user-controlled-alternate-protocol-ports"; 749 "enable-user-controlled-alternate-protocol-ports";
752 750
753 // Spawns threads to watch for excessive delays in specified message loops. 751 // Spawns threads to watch for excessive delays in specified message loops.
754 // User should set breakpoints on Alarm() to examine problematic thread. 752 // User should set breakpoints on Alarm() to examine problematic thread.
755 // 753 //
(...skipping 844 matching lines...) Expand 10 before | Expand all | Expand 10 after
1600 1598
1601 // ----------------------------------------------------------------------------- 1599 // -----------------------------------------------------------------------------
1602 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1600 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1603 // 1601 //
1604 // You were going to just dump your switches here, weren't you? Instead, please 1602 // You were going to just dump your switches here, weren't you? Instead, please
1605 // put them in alphabetical order above, or in order inside the appropriate 1603 // put them in alphabetical order above, or in order inside the appropriate
1606 // ifdef at the bottom. The order should match the header. 1604 // ifdef at the bottom. The order should match the header.
1607 // ----------------------------------------------------------------------------- 1605 // -----------------------------------------------------------------------------
1608 1606
1609 } // namespace switches 1607 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698