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 namespace prefs { | 7 namespace prefs { |
8 | 8 |
9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
10 // These are attached to the user profile | 10 // These are attached to the user profile |
(...skipping 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
742 | 742 |
743 // A map of profile data directory to cached information. This cache can be | 743 // A map of profile data directory to cached information. This cache can be |
744 // used to display information about profiles without actually having to load | 744 // used to display information about profiles without actually having to load |
745 // them. | 745 // them. |
746 const char kProfileInfoCache[] = "profile.info_cache"; | 746 const char kProfileInfoCache[] = "profile.info_cache"; |
747 | 747 |
748 // Prefs for SSLConfigServicePref. | 748 // Prefs for SSLConfigServicePref. |
749 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; | 749 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; |
750 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; | 750 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; |
751 const char kTLS1Enabled[] = "ssl.tls1.enabled"; | 751 const char kTLS1Enabled[] = "ssl.tls1.enabled"; |
| 752 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; |
752 | 753 |
753 // The metrics client GUID and session ID. | 754 // The metrics client GUID and session ID. |
754 const char kMetricsClientID[] = "user_experience_metrics.client_id"; | 755 const char kMetricsClientID[] = "user_experience_metrics.client_id"; |
755 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; | 756 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; |
756 | 757 |
757 // Date/time when the current metrics profile ID was created | 758 // Date/time when the current metrics profile ID was created |
758 // (which hopefully corresponds to first run). | 759 // (which hopefully corresponds to first run). |
759 const char kMetricsClientIDTimestamp[] = | 760 const char kMetricsClientIDTimestamp[] = |
760 "user_experience_metrics.client_id_timestamp"; | 761 "user_experience_metrics.client_id_timestamp"; |
761 | 762 |
(...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1414 // Whether user-specified handlers for protocols and content types can be | 1415 // Whether user-specified handlers for protocols and content types can be |
1415 // specified. | 1416 // specified. |
1416 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1417 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1417 | 1418 |
1418 // Integers that specify the policy refresh rate for device- and user-policy in | 1419 // Integers that specify the policy refresh rate for device- and user-policy in |
1419 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1420 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1420 // by the cloud policy subsystem. | 1421 // by the cloud policy subsystem. |
1421 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1422 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1422 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1423 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1423 } // namespace prefs | 1424 } // namespace prefs |
OLD | NEW |