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