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 834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
845 // directories. | 845 // directories. |
846 const char kProfilesNumCreated[] = "profile.profiles_created"; | 846 const char kProfilesNumCreated[] = "profile.profiles_created"; |
847 | 847 |
848 // A map of profile data directory to cached information. This cache can be | 848 // A map of profile data directory to cached information. This cache can be |
849 // used to display information about profiles without actually having to load | 849 // used to display information about profiles without actually having to load |
850 // them. | 850 // them. |
851 const char kProfileInfoCache[] = "profile.info_cache"; | 851 const char kProfileInfoCache[] = "profile.info_cache"; |
852 | 852 |
853 // Prefs for SSLConfigServicePref. | 853 // Prefs for SSLConfigServicePref. |
854 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; | 854 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; |
| 855 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; |
| 856 const char kTLS1Enabled[] = "ssl.tls1.enabled"; |
855 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; | 857 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; |
856 | 858 |
857 // The metrics client GUID and session ID. | 859 // The metrics client GUID and session ID. |
858 const char kMetricsClientID[] = "user_experience_metrics.client_id"; | 860 const char kMetricsClientID[] = "user_experience_metrics.client_id"; |
859 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; | 861 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; |
860 | 862 |
861 // Date/time when the current metrics profile ID was created | 863 // Date/time when the current metrics profile ID was created |
862 // (which hopefully corresponds to first run). | 864 // (which hopefully corresponds to first run). |
863 const char kMetricsClientIDTimestamp[] = | 865 const char kMetricsClientIDTimestamp[] = |
864 "user_experience_metrics.client_id_timestamp"; | 866 "user_experience_metrics.client_id_timestamp"; |
(...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1589 // specified. | 1591 // specified. |
1590 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1592 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1591 | 1593 |
1592 // Integers that specify the policy refresh rate for device- and user-policy in | 1594 // Integers that specify the policy refresh rate for device- and user-policy in |
1593 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1595 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1594 // by the cloud policy subsystem. | 1596 // by the cloud policy subsystem. |
1595 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1597 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1596 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1598 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1597 | 1599 |
1598 } // namespace prefs | 1600 } // namespace prefs |
OLD | NEW |