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 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
790 // directories. | 790 // directories. |
791 const char kProfilesNumCreated[] = "profile.profiles_created"; | 791 const char kProfilesNumCreated[] = "profile.profiles_created"; |
792 | 792 |
793 // A map of profile data directory to cached information. This cache can be | 793 // A map of profile data directory to cached information. This cache can be |
794 // used to display information about profiles without actually having to load | 794 // used to display information about profiles without actually having to load |
795 // them. | 795 // them. |
796 const char kProfileInfoCache[] = "profile.info_cache"; | 796 const char kProfileInfoCache[] = "profile.info_cache"; |
797 | 797 |
798 // Prefs for SSLConfigServicePref. | 798 // Prefs for SSLConfigServicePref. |
799 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; | 799 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; |
800 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; | |
801 const char kTLS1Enabled[] = "ssl.tls1.enabled"; | |
802 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; | 800 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; |
803 | 801 |
804 // The metrics client GUID and session ID. | 802 // The metrics client GUID and session ID. |
805 const char kMetricsClientID[] = "user_experience_metrics.client_id"; | 803 const char kMetricsClientID[] = "user_experience_metrics.client_id"; |
806 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; | 804 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; |
807 | 805 |
808 // Date/time when the current metrics profile ID was created | 806 // Date/time when the current metrics profile ID was created |
809 // (which hopefully corresponds to first run). | 807 // (which hopefully corresponds to first run). |
810 const char kMetricsClientIDTimestamp[] = | 808 const char kMetricsClientIDTimestamp[] = |
811 "user_experience_metrics.client_id_timestamp"; | 809 "user_experience_metrics.client_id_timestamp"; |
(...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1493 // specified. | 1491 // specified. |
1494 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1492 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1495 | 1493 |
1496 // Integers that specify the policy refresh rate for device- and user-policy in | 1494 // Integers that specify the policy refresh rate for device- and user-policy in |
1497 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1495 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1498 // by the cloud policy subsystem. | 1496 // by the cloud policy subsystem. |
1499 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1497 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1500 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1498 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1501 | 1499 |
1502 } // namespace prefs | 1500 } // namespace prefs |
OLD | NEW |