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 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
738 | 738 |
739 // A map of profile data directory to cached information. This cache can be | 739 // A map of profile data directory to cached information. This cache can be |
740 // used to display information about profiles without actually having to load | 740 // used to display information about profiles without actually having to load |
741 // them. | 741 // them. |
742 const char kProfileInfoCache[] = "profile.info_cache"; | 742 const char kProfileInfoCache[] = "profile.info_cache"; |
743 | 743 |
744 // Prefs for SSLConfigServicePref. | 744 // Prefs for SSLConfigServicePref. |
745 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; | 745 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; |
746 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; | 746 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; |
747 const char kTLS1Enabled[] = "ssl.tls1.enabled"; | 747 const char kTLS1Enabled[] = "ssl.tls1.enabled"; |
| 748 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; |
748 | 749 |
749 // The metrics client GUID and session ID. | 750 // The metrics client GUID and session ID. |
750 const char kMetricsClientID[] = "user_experience_metrics.client_id"; | 751 const char kMetricsClientID[] = "user_experience_metrics.client_id"; |
751 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; | 752 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; |
752 | 753 |
753 // Date/time when the current metrics profile ID was created | 754 // Date/time when the current metrics profile ID was created |
754 // (which hopefully corresponds to first run). | 755 // (which hopefully corresponds to first run). |
755 const char kMetricsClientIDTimestamp[] = | 756 const char kMetricsClientIDTimestamp[] = |
756 "user_experience_metrics.client_id_timestamp"; | 757 "user_experience_metrics.client_id_timestamp"; |
757 | 758 |
(...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1399 // Whether user-specified handlers for protocols and content types can be | 1400 // Whether user-specified handlers for protocols and content types can be |
1400 // specified. | 1401 // specified. |
1401 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1402 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1402 | 1403 |
1403 // Integers that specify the policy refresh rate for device- and user-policy in | 1404 // Integers that specify the policy refresh rate for device- and user-policy in |
1404 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1405 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1405 // by the cloud policy subsystem. | 1406 // by the cloud policy subsystem. |
1406 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1407 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1407 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1408 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1408 } // namespace prefs | 1409 } // namespace prefs |
OLD | NEW |