| 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 1755 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2632 | 2637 |
| 2633 // The number of seconds since epoch that the OS password was last changed. | 2638 // The number of seconds since epoch that the OS password was last changed. |
| 2634 const char kOsPasswordLastChanged[] = | 2639 const char kOsPasswordLastChanged[] = |
| 2635 "password_manager.os_password_last_changed"; | 2640 "password_manager.os_password_last_changed"; |
| 2636 #endif | 2641 #endif |
| 2637 | 2642 |
| 2638 // Whether DNS Quick Check is disabled in proxy resolution. | 2643 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2639 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2644 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2640 | 2645 |
| 2641 } // namespace prefs | 2646 } // namespace prefs |
| OLD | NEW |