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