| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 | 8 |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| (...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 894 // A map of profile data directory to cached information. This cache can be | 894 // A map of profile data directory to cached information. This cache can be |
| 895 // used to display information about profiles without actually having to load | 895 // used to display information about profiles without actually having to load |
| 896 // them. | 896 // them. |
| 897 const char kProfileInfoCache[] = "profile.info_cache"; | 897 const char kProfileInfoCache[] = "profile.info_cache"; |
| 898 | 898 |
| 899 // Prefs for SSLConfigServicePref. | 899 // Prefs for SSLConfigServicePref. |
| 900 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; | 900 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; |
| 901 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; | 901 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; |
| 902 const char kTLS1Enabled[] = "ssl.tls1.enabled"; | 902 const char kTLS1Enabled[] = "ssl.tls1.enabled"; |
| 903 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; | 903 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; |
| 904 const char kEnableOriginBoundCerts[] = "ssl.origin_bound_certs.enabled"; |
| 904 | 905 |
| 905 // The metrics client GUID and session ID. | 906 // The metrics client GUID and session ID. |
| 906 const char kMetricsClientID[] = "user_experience_metrics.client_id"; | 907 const char kMetricsClientID[] = "user_experience_metrics.client_id"; |
| 907 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; | 908 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; |
| 908 | 909 |
| 909 // Date/time when the current metrics profile ID was created | 910 // Date/time when the current metrics profile ID was created |
| 910 // (which hopefully corresponds to first run). | 911 // (which hopefully corresponds to first run). |
| 911 const char kMetricsClientIDTimestamp[] = | 912 const char kMetricsClientIDTimestamp[] = |
| 912 "user_experience_metrics.client_id_timestamp"; | 913 "user_experience_metrics.client_id_timestamp"; |
| 913 | 914 |
| (...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1680 | 1681 |
| 1681 // String that represents the recovery component last downloaded version. This | 1682 // String that represents the recovery component last downloaded version. This |
| 1682 // takes the usual 'a.b.c.d' notation. | 1683 // takes the usual 'a.b.c.d' notation. |
| 1683 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1684 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
| 1684 | 1685 |
| 1685 // String that stores the component updater last known state. This is used for | 1686 // String that stores the component updater last known state. This is used for |
| 1686 // troubleshooting. | 1687 // troubleshooting. |
| 1687 const char kComponentUpdaterState[] = "component_updater.state"; | 1688 const char kComponentUpdaterState[] = "component_updater.state"; |
| 1688 | 1689 |
| 1689 } // namespace prefs | 1690 } // namespace prefs |
| OLD | NEW |