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 708 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
719 // Directory of the last profile used. | 719 // Directory of the last profile used. |
720 const char kProfileLastUsed[] = "profile.last_used"; | 720 const char kProfileLastUsed[] = "profile.last_used"; |
721 | 721 |
722 // Maps profile data directories to login names. | 722 // Maps profile data directories to login names. |
723 const char kProfileDirectoryMap[] = "profile.directory_map"; | 723 const char kProfileDirectoryMap[] = "profile.directory_map"; |
724 | 724 |
725 // Total number of profiles created for this Chrome build. Used to tag profile | 725 // Total number of profiles created for this Chrome build. Used to tag profile |
726 // directories. | 726 // directories. |
727 const char kProfilesNumCreated[] = "profile.profiles_created"; | 727 const char kProfilesNumCreated[] = "profile.profiles_created"; |
728 | 728 |
| 729 // A map of profile data directory to cached information. This cache can be |
| 730 // used to display information about profiles without actually having to load |
| 731 // them. |
| 732 const char kProfileInfoCache[] = "profile.info_cache"; |
| 733 |
729 // Prefs for SSLConfigServicePref. | 734 // Prefs for SSLConfigServicePref. |
730 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; | 735 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; |
731 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; | 736 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; |
732 const char kTLS1Enabled[] = "ssl.tls1.enabled"; | 737 const char kTLS1Enabled[] = "ssl.tls1.enabled"; |
733 | 738 |
734 // The metrics client GUID and session ID. | 739 // The metrics client GUID and session ID. |
735 const char kMetricsClientID[] = "user_experience_metrics.client_id"; | 740 const char kMetricsClientID[] = "user_experience_metrics.client_id"; |
736 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; | 741 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; |
737 | 742 |
738 // Date/time when the current metrics profile ID was created | 743 // Date/time when the current metrics profile ID was created |
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1378 // Whether user-specified handlers for protocols and content types can be | 1383 // Whether user-specified handlers for protocols and content types can be |
1379 // specified. | 1384 // specified. |
1380 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1385 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1381 | 1386 |
1382 // Integers that specify the policy refresh rate for device- and user-policy in | 1387 // Integers that specify the policy refresh rate for device- and user-policy in |
1383 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1388 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1384 // by the cloud policy subsystem. | 1389 // by the cloud policy subsystem. |
1385 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1390 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1386 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1391 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1387 } // namespace prefs | 1392 } // namespace prefs |
OLD | NEW |