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

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

Issue 14125003: Do not roll back to SSL 3.0 for Google properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix a bug that prevents TLS 1.1 -> TLS 1.0 fallback. Created 7 years, 8 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
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 602 matching lines...) Expand 10 before | Expand all | Expand 10 after
613 const char kEnableProfiling[] = "enable-profiling"; 613 const char kEnableProfiling[] = "enable-profiling";
614 614
615 // Enables support for the QUIC protocol. This is a temporary testing flag. 615 // Enables support for the QUIC protocol. This is a temporary testing flag.
616 const char kEnableQuic[] = "enable-quic"; 616 const char kEnableQuic[] = "enable-quic";
617 617
618 // Enables content settings based on host *and* plug-in in the user 618 // Enables content settings based on host *and* plug-in in the user
619 // preferences. 619 // preferences.
620 const char kEnableResourceContentSettings[] = 620 const char kEnableResourceContentSettings[] =
621 "enable-resource-content-settings"; 621 "enable-resource-content-settings";
622 622
623 // Enables SSL 3.0 fallback.
wtc 2013/04/18 18:15:34 This comment should say something like "Enables pe
624 const char kEnableSSL3Fallback[] = "enable-ssl3-fallback";
625
623 // Controls the support for SDCH filtering (dictionary based expansion of 626 // Controls the support for SDCH filtering (dictionary based expansion of
624 // content). By default SDCH filtering is enabled. To disable SDCH filtering, 627 // content). By default SDCH filtering is enabled. To disable SDCH filtering,
625 // use "--enable-sdch=0" as command line argument. SDCH is currently only 628 // use "--enable-sdch=0" as command line argument. SDCH is currently only
626 // supported server-side for searches on google.com. 629 // supported server-side for searches on google.com.
627 const char kEnableSdch[] = "enable-sdch"; 630 const char kEnableSdch[] = "enable-sdch";
628 631
629 // Enable SPDY/3.1. This is a temporary testing flag. 632 // Enable SPDY/3.1. This is a temporary testing flag.
630 const char kEnableSpdy31[] = "enable-spdy31"; 633 const char kEnableSpdy31[] = "enable-spdy31";
631 634
632 // Enable SPDY CREDENTIAL frame support. This is a temporary testing flag. 635 // Enable SPDY CREDENTIAL frame support. This is a temporary testing flag.
(...skipping 1053 matching lines...) Expand 10 before | Expand all | Expand 10 after
1686 1689
1687 // ----------------------------------------------------------------------------- 1690 // -----------------------------------------------------------------------------
1688 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1691 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1689 // 1692 //
1690 // You were going to just dump your switches here, weren't you? Instead, please 1693 // You were going to just dump your switches here, weren't you? Instead, please
1691 // put them in alphabetical order above, or in order inside the appropriate 1694 // put them in alphabetical order above, or in order inside the appropriate
1692 // ifdef at the bottom. The order should match the header. 1695 // ifdef at the bottom. The order should match the header.
1693 // ----------------------------------------------------------------------------- 1696 // -----------------------------------------------------------------------------
1694 1697
1695 } // namespace switches 1698 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698