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/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 1218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1229 // them. | 1229 // them. |
1230 const char kProfileInfoCache[] = "profile.info_cache"; | 1230 const char kProfileInfoCache[] = "profile.info_cache"; |
1231 | 1231 |
1232 // Prefs for SSLConfigServicePref. | 1232 // Prefs for SSLConfigServicePref. |
1233 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; | 1233 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; |
1234 const char kSSLVersionMin[] = "ssl.version_min"; | 1234 const char kSSLVersionMin[] = "ssl.version_min"; |
1235 const char kSSLVersionMax[] = "ssl.version_max"; | 1235 const char kSSLVersionMax[] = "ssl.version_max"; |
1236 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; | 1236 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; |
1237 const char kEnableOriginBoundCerts[] = "ssl.origin_bound_certs.enabled"; | 1237 const char kEnableOriginBoundCerts[] = "ssl.origin_bound_certs.enabled"; |
1238 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled"; | 1238 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled"; |
| 1239 const char kEnableUnrestrictedSSL3Fallback[] = |
| 1240 "ssl.unrestricted_ssl3_fallback.enabled"; |
1239 | 1241 |
1240 // A boolean pref of the EULA accepted flag. | 1242 // A boolean pref of the EULA accepted flag. |
1241 const char kEulaAccepted[] = "EulaAccepted"; | 1243 const char kEulaAccepted[] = "EulaAccepted"; |
1242 | 1244 |
1243 // The metrics client GUID, entropy source and session ID. | 1245 // The metrics client GUID, entropy source and session ID. |
1244 const char kMetricsClientID[] = "user_experience_metrics.client_id"; | 1246 const char kMetricsClientID[] = "user_experience_metrics.client_id"; |
1245 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; | 1247 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; |
1246 const char kMetricsLowEntropySource[] = | 1248 const char kMetricsLowEntropySource[] = |
1247 "user_experience_metrics.low_entropy_source"; | 1249 "user_experience_metrics.low_entropy_source"; |
1248 | 1250 |
(...skipping 1149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2398 // the time of the last ping. | 2400 // the time of the last ping. |
2399 extern const char kAppListLaunchCount[] = "app_list.launch_count"; | 2401 extern const char kAppListLaunchCount[] = "app_list.launch_count"; |
2400 extern const char kLastAppListLaunchPing[] = "app_list.last_launch_ping"; | 2402 extern const char kLastAppListLaunchPing[] = "app_list.last_launch_ping"; |
2401 | 2403 |
2402 // The number of times the an app was launched from the app launcher since last | 2404 // The number of times the an app was launched from the app launcher since last |
2403 // ping and the time of the last ping. | 2405 // ping and the time of the last ping. |
2404 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; | 2406 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; |
2405 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; | 2407 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; |
2406 | 2408 |
2407 } // namespace prefs | 2409 } // namespace prefs |
OLD | NEW |