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

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: ... 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
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 1098 matching lines...) Expand 10 before | Expand all | Expand 10 after
1109 "spelling-service-feedback-interval-seconds"; 1109 "spelling-service-feedback-interval-seconds";
1110 1110
1111 // Specifies the maximum SSL/TLS version ("ssl3", "tls1", "tls1.1", or 1111 // Specifies the maximum SSL/TLS version ("ssl3", "tls1", "tls1.1", or
1112 // "tls1.2"). 1112 // "tls1.2").
1113 const char kSSLVersionMax[] = "ssl-version-max"; 1113 const char kSSLVersionMax[] = "ssl-version-max";
1114 1114
1115 // Specifies the minimum SSL/TLS version ("ssl3", "tls1", "tls1.1", or 1115 // Specifies the minimum SSL/TLS version ("ssl3", "tls1", "tls1.1", or
1116 // "tls1.2"). 1116 // "tls1.2").
1117 const char kSSLVersionMin[] = "ssl-version-min"; 1117 const char kSSLVersionMin[] = "ssl-version-min";
1118 1118
1119 // Specifies the minimum SSL/TLS version ("ssl3", "tls1", "tls1.1", or
1120 // "tls1.2") that TLS fallback will accept.
1121 const char kSSLVersionFallbackMin[] = "ssl-version-fallback-min";
1122
1119 // Starts the browser maximized, regardless of any previous settings. 1123 // Starts the browser maximized, regardless of any previous settings.
1120 const char kStartMaximized[] = "start-maximized"; 1124 const char kStartMaximized[] = "start-maximized";
1121 1125
1122 // Sets the supervised user ID for any loaded or newly created profile to the 1126 // Sets the supervised user ID for any loaded or newly created profile to the
1123 // given value. Pass an empty string to mark the profile as non-supervised. 1127 // given value. Pass an empty string to mark the profile as non-supervised.
1124 // Used for testing. 1128 // Used for testing.
1125 const char kSupervisedUserId[] = "managed-user-id"; 1129 const char kSupervisedUserId[] = "managed-user-id";
1126 1130
1127 // Used to authenticate requests to the Sync service for supervised users. 1131 // Used to authenticate requests to the Sync service for supervised users.
1128 // Setting this switch also causes Sync to be set up for a supervised user. 1132 // 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
1352 1356
1353 // ----------------------------------------------------------------------------- 1357 // -----------------------------------------------------------------------------
1354 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1358 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1355 // 1359 //
1356 // You were going to just dump your switches here, weren't you? Instead, please 1360 // You were going to just dump your switches here, weren't you? Instead, please
1357 // put them in alphabetical order above, or in order inside the appropriate 1361 // put them in alphabetical order above, or in order inside the appropriate
1358 // ifdef at the bottom. The order should match the header. 1362 // ifdef at the bottom. The order should match the header.
1359 // ----------------------------------------------------------------------------- 1363 // -----------------------------------------------------------------------------
1360 1364
1361 } // namespace switches 1365 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698