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

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

Issue 619463002: net: disable SSLv3 fallback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix debug crash in tests. Created 6 years, 2 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/pref_names.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1103 matching lines...) Expand 10 before | Expand all | Expand 10 after
1114 "spelling-service-feedback-interval-seconds"; 1114 "spelling-service-feedback-interval-seconds";
1115 1115
1116 // Specifies the maximum SSL/TLS version ("ssl3", "tls1", "tls1.1", or 1116 // Specifies the maximum SSL/TLS version ("ssl3", "tls1", "tls1.1", or
1117 // "tls1.2"). 1117 // "tls1.2").
1118 const char kSSLVersionMax[] = "ssl-version-max"; 1118 const char kSSLVersionMax[] = "ssl-version-max";
1119 1119
1120 // Specifies the minimum SSL/TLS version ("ssl3", "tls1", "tls1.1", or 1120 // Specifies the minimum SSL/TLS version ("ssl3", "tls1", "tls1.1", or
1121 // "tls1.2"). 1121 // "tls1.2").
1122 const char kSSLVersionMin[] = "ssl-version-min"; 1122 const char kSSLVersionMin[] = "ssl-version-min";
1123 1123
1124 // Specifies the minimum SSL/TLS version ("ssl3", "tls1", "tls1.1", or
1125 // "tls1.2") that TLS fallback will accept.
1126 const char kSSLVersionFallbackMin[] = "ssl-version-fallback-min";
1127
1124 // Starts the browser maximized, regardless of any previous settings. 1128 // Starts the browser maximized, regardless of any previous settings.
1125 const char kStartMaximized[] = "start-maximized"; 1129 const char kStartMaximized[] = "start-maximized";
1126 1130
1127 // Sets the supervised user ID for any loaded or newly created profile to the 1131 // Sets the supervised user ID for any loaded or newly created profile to the
1128 // given value. Pass an empty string to mark the profile as non-supervised. 1132 // given value. Pass an empty string to mark the profile as non-supervised.
1129 // Used for testing. 1133 // Used for testing.
1130 const char kSupervisedUserId[] = "managed-user-id"; 1134 const char kSupervisedUserId[] = "managed-user-id";
1131 1135
1132 // Used to authenticate requests to the Sync service for supervised users. 1136 // Used to authenticate requests to the Sync service for supervised users.
1133 // Setting this switch also causes Sync to be set up for a supervised user. 1137 // Setting this switch also causes Sync to be set up for a supervised user.
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
1357 1361
1358 // ----------------------------------------------------------------------------- 1362 // -----------------------------------------------------------------------------
1359 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1363 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1360 // 1364 //
1361 // You were going to just dump your switches here, weren't you? Instead, please 1365 // You were going to just dump your switches here, weren't you? Instead, please
1362 // put them in alphabetical order above, or in order inside the appropriate 1366 // put them in alphabetical order above, or in order inside the appropriate
1363 // ifdef at the bottom. The order should match the header. 1367 // ifdef at the bottom. The order should match the header.
1364 // ----------------------------------------------------------------------------- 1368 // -----------------------------------------------------------------------------
1365 1369
1366 } // namespace switches 1370 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/pref_names.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698