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