| OLD | NEW | 
|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "base/basictypes.h" | 7 #include "base/basictypes.h" | 
| 8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" | 
| 9 | 9 | 
| 10 namespace prefs { | 10 namespace prefs { | 
| (...skipping 846 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 857 // A boolean pref that tracks whether the user has already given consent for | 857 // A boolean pref that tracks whether the user has already given consent for | 
| 858 // enabling remote attestation for content protection. | 858 // enabling remote attestation for content protection. | 
| 859 const char kRAConsentFirstTime[] = "settings.privacy.ra_consent"; | 859 const char kRAConsentFirstTime[] = "settings.privacy.ra_consent"; | 
| 860 | 860 | 
| 861 // A boolean pref recording whether user has dismissed the multiprofile | 861 // A boolean pref recording whether user has dismissed the multiprofile | 
| 862 // itroduction dialog show. | 862 // itroduction dialog show. | 
| 863 const char kMultiProfileNeverShowIntro[] = | 863 const char kMultiProfileNeverShowIntro[] = | 
| 864     "settings.multi_profile_never_show_intro"; | 864     "settings.multi_profile_never_show_intro"; | 
| 865 | 865 | 
| 866 // A boolean pref recording whether user has dismissed the multiprofile | 866 // A boolean pref recording whether user has dismissed the multiprofile | 
|  | 867 // teleport warning dialog show. | 
|  | 868 const char kMultiProfileWarningShowDismissed[] = | 
|  | 869     "settings.multi_profile_warning_show_dismissed"; | 
|  | 870 | 
|  | 871 // A boolean pref recording whether user has dismissed the multiprofile | 
| 867 // notification. | 872 // notification. | 
| 868 const char kMultiProfileNotificationDismissed[] = | 873 const char kMultiProfileNotificationDismissed[] = | 
| 869     "settings.multi_profile_notification_dismissed"; | 874     "settings.multi_profile_notification_dismissed"; | 
| 870 | 875 | 
| 871 // A string pref that holds string enum values of how the user should behave | 876 // A string pref that holds string enum values of how the user should behave | 
| 872 // in a multiprofile session. See ChromeOsMultiProfileUserBehavior policy | 877 // in a multiprofile session. See ChromeOsMultiProfileUserBehavior policy | 
| 873 // for more details of the valid values. | 878 // for more details of the valid values. | 
| 874 const char kMultiProfileUserBehavior[] = "settings.multiprofile_user_behavior"; | 879 const char kMultiProfileUserBehavior[] = "settings.multiprofile_user_behavior"; | 
| 875 | 880 | 
| 876 // List of the set of language codes for which high quality local speech | 881 // List of the set of language codes for which high quality local speech | 
| (...skipping 1761 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 2638 | 2643 | 
| 2639 // The number of seconds since epoch that the OS password was last changed. | 2644 // The number of seconds since epoch that the OS password was last changed. | 
| 2640 const char kOsPasswordLastChanged[] = | 2645 const char kOsPasswordLastChanged[] = | 
| 2641     "password_manager.os_password_last_changed"; | 2646     "password_manager.os_password_last_changed"; | 
| 2642 #endif | 2647 #endif | 
| 2643 | 2648 | 
| 2644 // Whether DNS Quick Check is disabled in proxy resolution. | 2649 // Whether DNS Quick Check is disabled in proxy resolution. | 
| 2645 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2650 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 
| 2646 | 2651 | 
| 2647 }  // namespace prefs | 2652 }  // namespace prefs | 
| OLD | NEW | 
|---|