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