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 1222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1233 // them. | 1233 // them. |
1234 const char kProfileInfoCache[] = "profile.info_cache"; | 1234 const char kProfileInfoCache[] = "profile.info_cache"; |
1235 | 1235 |
1236 // Prefs for SSLConfigServicePref. | 1236 // Prefs for SSLConfigServicePref. |
1237 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; | 1237 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; |
1238 const char kSSLVersionMin[] = "ssl.version_min"; | 1238 const char kSSLVersionMin[] = "ssl.version_min"; |
1239 const char kSSLVersionMax[] = "ssl.version_max"; | 1239 const char kSSLVersionMax[] = "ssl.version_max"; |
1240 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; | 1240 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; |
1241 const char kEnableOriginBoundCerts[] = "ssl.origin_bound_certs.enabled"; | 1241 const char kEnableOriginBoundCerts[] = "ssl.origin_bound_certs.enabled"; |
1242 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled"; | 1242 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled"; |
| 1243 const char kDisableSSLVersionMinPreloaded[] = |
| 1244 "ssl.ssl_version_min_preloaded.disabled"; |
1243 | 1245 |
1244 // The metrics client GUID, entropy source and session ID. | 1246 // The metrics client GUID, entropy source and session ID. |
1245 const char kMetricsClientID[] = "user_experience_metrics.client_id"; | 1247 const char kMetricsClientID[] = "user_experience_metrics.client_id"; |
1246 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; | 1248 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; |
1247 const char kMetricsLowEntropySource[] = | 1249 const char kMetricsLowEntropySource[] = |
1248 "user_experience_metrics.low_entropy_source"; | 1250 "user_experience_metrics.low_entropy_source"; |
1249 | 1251 |
1250 // Date/time when the current metrics profile ID was created | 1252 // Date/time when the current metrics profile ID was created |
1251 // (which hopefully corresponds to first run). | 1253 // (which hopefully corresponds to first run). |
1252 const char kMetricsClientIDTimestamp[] = | 1254 const char kMetricsClientIDTimestamp[] = |
(...skipping 1123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2376 // the time of the last ping. | 2378 // the time of the last ping. |
2377 extern const char kAppListLaunchCount[] = "app_list.launch_count"; | 2379 extern const char kAppListLaunchCount[] = "app_list.launch_count"; |
2378 extern const char kLastAppListLaunchPing[] = "app_list.last_launch_ping"; | 2380 extern const char kLastAppListLaunchPing[] = "app_list.last_launch_ping"; |
2379 | 2381 |
2380 // The number of times the an app was launched from the app launcher since last | 2382 // The number of times the an app was launched from the app launcher since last |
2381 // ping and the time of the last ping. | 2383 // ping and the time of the last ping. |
2382 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; | 2384 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; |
2383 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; | 2385 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; |
2384 | 2386 |
2385 } // namespace prefs | 2387 } // namespace prefs |
OLD | NEW |