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