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 847 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
858 // directories. | 858 // directories. |
859 const char kProfilesNumCreated[] = "profile.profiles_created"; | 859 const char kProfilesNumCreated[] = "profile.profiles_created"; |
860 | 860 |
861 // A map of profile data directory to cached information. This cache can be | 861 // A map of profile data directory to cached information. This cache can be |
862 // used to display information about profiles without actually having to load | 862 // used to display information about profiles without actually having to load |
863 // them. | 863 // them. |
864 const char kProfileInfoCache[] = "profile.info_cache"; | 864 const char kProfileInfoCache[] = "profile.info_cache"; |
865 | 865 |
866 // Prefs for SSLConfigServicePref. | 866 // Prefs for SSLConfigServicePref. |
867 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; | 867 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; |
868 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; | |
869 const char kTLS1Enabled[] = "ssl.tls1.enabled"; | |
870 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; | 868 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; |
871 | 869 |
872 // The metrics client GUID and session ID. | 870 // The metrics client GUID and session ID. |
873 const char kMetricsClientID[] = "user_experience_metrics.client_id"; | 871 const char kMetricsClientID[] = "user_experience_metrics.client_id"; |
874 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; | 872 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; |
875 | 873 |
876 // Date/time when the current metrics profile ID was created | 874 // Date/time when the current metrics profile ID was created |
877 // (which hopefully corresponds to first run). | 875 // (which hopefully corresponds to first run). |
878 const char kMetricsClientIDTimestamp[] = | 876 const char kMetricsClientIDTimestamp[] = |
879 "user_experience_metrics.client_id_timestamp"; | 877 "user_experience_metrics.client_id_timestamp"; |
(...skipping 692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1572 // specified. | 1570 // specified. |
1573 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1571 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1574 | 1572 |
1575 // Integers that specify the policy refresh rate for device- and user-policy in | 1573 // Integers that specify the policy refresh rate for device- and user-policy in |
1576 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1574 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1577 // by the cloud policy subsystem. | 1575 // by the cloud policy subsystem. |
1578 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1576 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1579 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1577 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1580 | 1578 |
1581 } // namespace prefs | 1579 } // namespace prefs |
OLD | NEW |