| 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 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1406 // Whether user-specified handlers for protocols and content types can be | 1407 // Whether user-specified handlers for protocols and content types can be |
| 1407 // specified. | 1408 // specified. |
| 1408 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1409 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
| 1409 | 1410 |
| 1410 // Integers that specify the policy refresh rate for device- and user-policy in | 1411 // Integers that specify the policy refresh rate for device- and user-policy in |
| 1411 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1412 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
| 1412 // by the cloud policy subsystem. | 1413 // by the cloud policy subsystem. |
| 1413 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1414 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
| 1414 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1415 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
| 1415 } // namespace prefs | 1416 } // namespace prefs |
| OLD | NEW |