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 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1107 const char kSpellingServiceFeedbackUrl[] = "spelling-service-feedback-url"; | 1107 const char kSpellingServiceFeedbackUrl[] = "spelling-service-feedback-url"; |
1108 | 1108 |
1109 // Specifies the number of seconds between sending batches of feedback to | 1109 // Specifies the number of seconds between sending batches of feedback to |
1110 // spelling service. The default is 30 minutes. The minimum is 5 seconds. This | 1110 // spelling service. The default is 30 minutes. The minimum is 5 seconds. This |
1111 // switch is for temporary testing only. | 1111 // switch is for temporary testing only. |
1112 // TODO(rouslan): Remove this flag when feedback testing is complete. Revisit by | 1112 // TODO(rouslan): Remove this flag when feedback testing is complete. Revisit by |
1113 // August 2013. | 1113 // August 2013. |
1114 const char kSpellingServiceFeedbackIntervalSeconds[] = | 1114 const char kSpellingServiceFeedbackIntervalSeconds[] = |
1115 "spelling-service-feedback-interval-seconds"; | 1115 "spelling-service-feedback-interval-seconds"; |
1116 | 1116 |
1117 // Controls which version of the TLS/SSL interstitial is shown. | |
1118 const char kSSLInterstitialV1[] = "ssl-interstitial-v1"; | |
1119 const char kSSLInterstitialV2[] = "ssl-interstitial-v2"; | |
1120 const char kSSLInterstitialV1WithV2Text[] = "ssl-interstitial-v1-v2-text"; | |
1121 const char kSSLInterstitialV2Yellow[] = "ssl-interstitial-v2-yellow"; | |
1122 const char kSSLInterstitialV2Guard[] = "ssl-interstitial-v2-guard"; | |
1123 | |
1124 // Specifies the maximum SSL/TLS version ("ssl3", "tls1", "tls1.1", or | 1117 // Specifies the maximum SSL/TLS version ("ssl3", "tls1", "tls1.1", or |
1125 // "tls1.2"). | 1118 // "tls1.2"). |
1126 const char kSSLVersionMax[] = "ssl-version-max"; | 1119 const char kSSLVersionMax[] = "ssl-version-max"; |
1127 | 1120 |
1128 // Specifies the minimum SSL/TLS version ("ssl3", "tls1", "tls1.1", or | 1121 // Specifies the minimum SSL/TLS version ("ssl3", "tls1", "tls1.1", or |
1129 // "tls1.2"). | 1122 // "tls1.2"). |
1130 const char kSSLVersionMin[] = "ssl-version-min"; | 1123 const char kSSLVersionMin[] = "ssl-version-min"; |
1131 | 1124 |
1132 // Starts the browser maximized, regardless of any previous settings. | 1125 // Starts the browser maximized, regardless of any previous settings. |
1133 const char kStartMaximized[] = "start-maximized"; | 1126 const char kStartMaximized[] = "start-maximized"; |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1374 | 1367 |
1375 // ----------------------------------------------------------------------------- | 1368 // ----------------------------------------------------------------------------- |
1376 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1369 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1377 // | 1370 // |
1378 // You were going to just dump your switches here, weren't you? Instead, please | 1371 // You were going to just dump your switches here, weren't you? Instead, please |
1379 // put them in alphabetical order above, or in order inside the appropriate | 1372 // put them in alphabetical order above, or in order inside the appropriate |
1380 // ifdef at the bottom. The order should match the header. | 1373 // ifdef at the bottom. The order should match the header. |
1381 // ----------------------------------------------------------------------------- | 1374 // ----------------------------------------------------------------------------- |
1382 | 1375 |
1383 } // namespace switches | 1376 } // namespace switches |
OLD | NEW |