| 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 1123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1134 | 1134 |
| 1135 // Specifies the number of seconds between sending batches of feedback to | 1135 // Specifies the number of seconds between sending batches of feedback to |
| 1136 // spelling service. The default is 30 minutes. The mininum is 5 seconds. This | 1136 // spelling service. The default is 30 minutes. The mininum is 5 seconds. This |
| 1137 // switch is for temporary testing only. | 1137 // switch is for temporary testing only. |
| 1138 // TODO(rouslan): Remove this flag when feedback testing is complete. Revisit by | 1138 // TODO(rouslan): Remove this flag when feedback testing is complete. Revisit by |
| 1139 // August 2013. | 1139 // August 2013. |
| 1140 const char kSpellingServiceFeedbackIntervalSeconds[] = | 1140 const char kSpellingServiceFeedbackIntervalSeconds[] = |
| 1141 "spelling-service-feedback-interval-seconds"; | 1141 "spelling-service-feedback-interval-seconds"; |
| 1142 | 1142 |
| 1143 // Controls which version of the TLS/SSL interstitial is shown. | 1143 // Controls which version of the TLS/SSL interstitial is shown. |
| 1144 const char kSSLInterstitialVersionV1[] = "ssl-interstitial-v1"; | 1144 const char kSSLInterstitialV1[] = "ssl-interstitial-v1"; |
| 1145 const char kSSLInterstitialVersionV2Gray[] = "ssl-interstitial-v2-gray"; | 1145 const char kSSLInterstitialV2[] = "ssl-interstitial-v2"; |
| 1146 const char kSSLInterstitialVersionV2Colorful[] = "ssl-interstitial-v2-colorful"; | 1146 const char kSSLInterstitialV1WithV2Text[] = "ssl-interstitial-v1-v2-text"; |
| 1147 const char kSSLInterstitialV2Yellow[] = "ssl-interstitial-v2-yellow"; |
| 1148 const char kSSLInterstitialV2Guard[] = "ssl-interstitial-v2-guard"; |
| 1147 | 1149 |
| 1148 // Specifies the maximum SSL/TLS version ("ssl3", "tls1", "tls1.1", or | 1150 // Specifies the maximum SSL/TLS version ("ssl3", "tls1", "tls1.1", or |
| 1149 // "tls1.2"). | 1151 // "tls1.2"). |
| 1150 const char kSSLVersionMax[] = "ssl-version-max"; | 1152 const char kSSLVersionMax[] = "ssl-version-max"; |
| 1151 | 1153 |
| 1152 // Specifies the minimum SSL/TLS version ("ssl3", "tls1", "tls1.1", or | 1154 // Specifies the minimum SSL/TLS version ("ssl3", "tls1", "tls1.1", or |
| 1153 // "tls1.2"). | 1155 // "tls1.2"). |
| 1154 const char kSSLVersionMin[] = "ssl-version-min"; | 1156 const char kSSLVersionMin[] = "ssl-version-min"; |
| 1155 | 1157 |
| 1156 // Starts the browser maximized, regardless of any previous settings. | 1158 // Starts the browser maximized, regardless of any previous settings. |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1410 | 1412 |
| 1411 // ----------------------------------------------------------------------------- | 1413 // ----------------------------------------------------------------------------- |
| 1412 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1414 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1413 // | 1415 // |
| 1414 // You were going to just dump your switches here, weren't you? Instead, please | 1416 // You were going to just dump your switches here, weren't you? Instead, please |
| 1415 // put them in alphabetical order above, or in order inside the appropriate | 1417 // put them in alphabetical order above, or in order inside the appropriate |
| 1416 // ifdef at the bottom. The order should match the header. | 1418 // ifdef at the bottom. The order should match the header. |
| 1417 // ----------------------------------------------------------------------------- | 1419 // ----------------------------------------------------------------------------- |
| 1418 | 1420 |
| 1419 } // namespace switches | 1421 } // namespace switches |
| OLD | NEW |