| 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 1036 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1047 | 1047 |
| 1048 // Specifies the number of seconds between sending batches of feedback to | 1048 // Specifies the number of seconds between sending batches of feedback to |
| 1049 // spelling service. The default is 30 minutes. The minimum is 5 seconds. This | 1049 // spelling service. The default is 30 minutes. The minimum is 5 seconds. This |
| 1050 // switch is for temporary testing only. | 1050 // switch is for temporary testing only. |
| 1051 // TODO(rouslan): Remove this flag when feedback testing is complete. Revisit by | 1051 // TODO(rouslan): Remove this flag when feedback testing is complete. Revisit by |
| 1052 // August 2013. | 1052 // August 2013. |
| 1053 const char kSpellingServiceFeedbackIntervalSeconds[] = | 1053 const char kSpellingServiceFeedbackIntervalSeconds[] = |
| 1054 "spelling-service-feedback-interval-seconds"; | 1054 "spelling-service-feedback-interval-seconds"; |
| 1055 #endif | 1055 #endif |
| 1056 | 1056 |
| 1057 // Specifies the maximum SSL/TLS version ("tls1", "tls1.1", or "tls1.2"). | |
| 1058 const char kSSLVersionMax[] = "ssl-version-max"; | |
| 1059 | |
| 1060 // Specifies the minimum SSL/TLS version ("tls1", "tls1.1", or "tls1.2"). | |
| 1061 const char kSSLVersionMin[] = "ssl-version-min"; | |
| 1062 | |
| 1063 // Specifies the minimum SSL/TLS version ("tls1", "tls1.1", or "tls1.2") that | |
| 1064 // TLS fallback will accept. | |
| 1065 const char kSSLVersionFallbackMin[] = "ssl-version-fallback-min"; | |
| 1066 | |
| 1067 // These values aren't switches, but rather the values that kSSLVersionMax, | |
| 1068 // kSSLVersionMin and kSSLVersionFallbackMin can have. | |
| 1069 const char kSSLVersionTLSv1[] = "tls1"; | |
| 1070 const char kSSLVersionTLSv11[] = "tls1.1"; | |
| 1071 const char kSSLVersionTLSv12[] = "tls1.2"; | |
| 1072 | |
| 1073 // Starts the browser maximized, regardless of any previous settings. | 1057 // Starts the browser maximized, regardless of any previous settings. |
| 1074 const char kStartMaximized[] = "start-maximized"; | 1058 const char kStartMaximized[] = "start-maximized"; |
| 1075 | 1059 |
| 1076 // Sets the supervised user ID for any loaded or newly created profile to the | 1060 // Sets the supervised user ID for any loaded or newly created profile to the |
| 1077 // given value. Pass an empty string to mark the profile as non-supervised. | 1061 // given value. Pass an empty string to mark the profile as non-supervised. |
| 1078 // Used for testing. | 1062 // Used for testing. |
| 1079 const char kSupervisedUserId[] = "managed-user-id"; | 1063 const char kSupervisedUserId[] = "managed-user-id"; |
| 1080 | 1064 |
| 1081 // Enables/disables SafeSites filtering for supervised users. Possible values | 1065 // Enables/disables SafeSites filtering for supervised users. Possible values |
| 1082 // are "enabled", "disabled", "blacklist-only", and "online-check-only". | 1066 // are "enabled", "disabled", "blacklist-only", and "online-check-only". |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1402 | 1386 |
| 1403 // ----------------------------------------------------------------------------- | 1387 // ----------------------------------------------------------------------------- |
| 1404 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1388 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1405 // | 1389 // |
| 1406 // You were going to just dump your switches here, weren't you? Instead, please | 1390 // You were going to just dump your switches here, weren't you? Instead, please |
| 1407 // put them in alphabetical order above, or in order inside the appropriate | 1391 // put them in alphabetical order above, or in order inside the appropriate |
| 1408 // ifdef at the bottom. The order should match the header. | 1392 // ifdef at the bottom. The order should match the header. |
| 1409 // ----------------------------------------------------------------------------- | 1393 // ----------------------------------------------------------------------------- |
| 1410 | 1394 |
| 1411 } // namespace switches | 1395 } // namespace switches |
| OLD | NEW |