| 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 852 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 863 // directories. | 863 // directories. |
| 864 const char kProfilesNumCreated[] = "profile.profiles_created"; | 864 const char kProfilesNumCreated[] = "profile.profiles_created"; |
| 865 | 865 |
| 866 // A map of profile data directory to cached information. This cache can be | 866 // A map of profile data directory to cached information. This cache can be |
| 867 // used to display information about profiles without actually having to load | 867 // used to display information about profiles without actually having to load |
| 868 // them. | 868 // them. |
| 869 const char kProfileInfoCache[] = "profile.info_cache"; | 869 const char kProfileInfoCache[] = "profile.info_cache"; |
| 870 | 870 |
| 871 // Prefs for SSLConfigServicePref. | 871 // Prefs for SSLConfigServicePref. |
| 872 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; | 872 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; |
| 873 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; |
| 874 const char kTLS1Enabled[] = "ssl.tls1.enabled"; |
| 873 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; | 875 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; |
| 874 | 876 |
| 875 // The metrics client GUID and session ID. | 877 // The metrics client GUID and session ID. |
| 876 const char kMetricsClientID[] = "user_experience_metrics.client_id"; | 878 const char kMetricsClientID[] = "user_experience_metrics.client_id"; |
| 877 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; | 879 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; |
| 878 | 880 |
| 879 // Date/time when the current metrics profile ID was created | 881 // Date/time when the current metrics profile ID was created |
| 880 // (which hopefully corresponds to first run). | 882 // (which hopefully corresponds to first run). |
| 881 const char kMetricsClientIDTimestamp[] = | 883 const char kMetricsClientIDTimestamp[] = |
| 882 "user_experience_metrics.client_id_timestamp"; | 884 "user_experience_metrics.client_id_timestamp"; |
| (...skipping 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1633 | 1635 |
| 1634 // String that represents the recovery component last downloaded version. This | 1636 // String that represents the recovery component last downloaded version. This |
| 1635 // takes the usual 'a.b.c.d' notation. | 1637 // takes the usual 'a.b.c.d' notation. |
| 1636 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1638 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
| 1637 | 1639 |
| 1638 // String that stores the component updater last known state. This is used for | 1640 // String that stores the component updater last known state. This is used for |
| 1639 // troubleshooting. | 1641 // troubleshooting. |
| 1640 const char kComponentUpdaterState[] = "component_updater.state"; | 1642 const char kComponentUpdaterState[] = "component_updater.state"; |
| 1641 | 1643 |
| 1642 } // namespace prefs | 1644 } // namespace prefs |
| OLD | NEW |