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