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