| 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 | 8 |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| (...skipping 1717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1728 const char kAuthNegotiateDelegateWhitelist[] = | 1728 const char kAuthNegotiateDelegateWhitelist[] = |
| 1729 "auth.negotiate_delegate_whitelist"; | 1729 "auth.negotiate_delegate_whitelist"; |
| 1730 // String that specifies the name of a custom GSSAPI library to load. | 1730 // String that specifies the name of a custom GSSAPI library to load. |
| 1731 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; | 1731 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; |
| 1732 | 1732 |
| 1733 // Boolean that specifies whether to allow basic auth prompting on cross- | 1733 // Boolean that specifies whether to allow basic auth prompting on cross- |
| 1734 // domain sub-content requests. | 1734 // domain sub-content requests. |
| 1735 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; | 1735 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; |
| 1736 | 1736 |
| 1737 #if defined(OS_CHROMEOS) | 1737 #if defined(OS_CHROMEOS) |
| 1738 // Dictionary for transient storage of settings that should go into signed | 1738 // Dictionary for transient storage of settings that should go into device |
| 1739 // settings storage before owner has been assigned. | 1739 // settings storage before owner has been assigned. |
| 1740 const char kSignedSettingsCache[] = "signed_settings_cache"; | 1740 const char kDeviceSettingsCache[] = "signed_settings_cache"; |
| 1741 | 1741 |
| 1742 // The hardware keyboard layout of the device. This should look like | 1742 // The hardware keyboard layout of the device. This should look like |
| 1743 // "xkb:us::eng". | 1743 // "xkb:us::eng". |
| 1744 const char kHardwareKeyboardLayout[] = "intl.hardware_keyboard"; | 1744 const char kHardwareKeyboardLayout[] = "intl.hardware_keyboard"; |
| 1745 | 1745 |
| 1746 // An integer pref which shows number of times carrier deal promo | 1746 // An integer pref which shows number of times carrier deal promo |
| 1747 // notification has been shown to user. | 1747 // notification has been shown to user. |
| 1748 const char kCarrierDealPromoShown[] = | 1748 const char kCarrierDealPromoShown[] = |
| 1749 "settings.internet.mobile.carrier_deal_promo_shown"; | 1749 "settings.internet.mobile.carrier_deal_promo_shown"; |
| 1750 | 1750 |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1998 | 1998 |
| 1999 // Counts how many more times the 'profile on a network share' warning should be | 1999 // Counts how many more times the 'profile on a network share' warning should be |
| 2000 // shown to the user before the next silence period. | 2000 // shown to the user before the next silence period. |
| 2001 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 2001 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
| 2002 // Tracks the time of the last shown warning. Used to reset | 2002 // Tracks the time of the last shown warning. Used to reset |
| 2003 // |network_profile.warnings_left| after a silence period. | 2003 // |network_profile.warnings_left| after a silence period. |
| 2004 const char kNetworkProfileLastWarningTime[] = | 2004 const char kNetworkProfileLastWarningTime[] = |
| 2005 "network_profile.last_warning_time"; | 2005 "network_profile.last_warning_time"; |
| 2006 | 2006 |
| 2007 } // namespace prefs | 2007 } // namespace prefs |
| OLD | NEW |