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