| 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 1745 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1756 const char kAuthNegotiateDelegateWhitelist[] = | 1756 const char kAuthNegotiateDelegateWhitelist[] = |
| 1757 "auth.negotiate_delegate_whitelist"; | 1757 "auth.negotiate_delegate_whitelist"; |
| 1758 // String that specifies the name of a custom GSSAPI library to load. | 1758 // String that specifies the name of a custom GSSAPI library to load. |
| 1759 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; | 1759 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; |
| 1760 | 1760 |
| 1761 // Boolean that specifies whether to allow basic auth prompting on cross- | 1761 // Boolean that specifies whether to allow basic auth prompting on cross- |
| 1762 // domain sub-content requests. | 1762 // domain sub-content requests. |
| 1763 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; | 1763 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; |
| 1764 | 1764 |
| 1765 #if defined(OS_CHROMEOS) | 1765 #if defined(OS_CHROMEOS) |
| 1766 // Dictionary for transient storage of settings that should go into signed | 1766 // Dictionary for transient storage of settings that should go into device |
| 1767 // settings storage before owner has been assigned. | 1767 // settings storage before owner has been assigned. |
| 1768 const char kSignedSettingsCache[] = "signed_settings_cache"; | 1768 const char kDeviceSettingsCache[] = "signed_settings_cache"; |
| 1769 | 1769 |
| 1770 // The hardware keyboard layout of the device. This should look like | 1770 // The hardware keyboard layout of the device. This should look like |
| 1771 // "xkb:us::eng". | 1771 // "xkb:us::eng". |
| 1772 const char kHardwareKeyboardLayout[] = "intl.hardware_keyboard"; | 1772 const char kHardwareKeyboardLayout[] = "intl.hardware_keyboard"; |
| 1773 | 1773 |
| 1774 // An integer pref which shows number of times carrier deal promo | 1774 // An integer pref which shows number of times carrier deal promo |
| 1775 // notification has been shown to user. | 1775 // notification has been shown to user. |
| 1776 const char kCarrierDealPromoShown[] = | 1776 const char kCarrierDealPromoShown[] = |
| 1777 "settings.internet.mobile.carrier_deal_promo_shown"; | 1777 "settings.internet.mobile.carrier_deal_promo_shown"; |
| 1778 | 1778 |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2018 const char kNetworkProfileLastWarningTime[] = | 2018 const char kNetworkProfileLastWarningTime[] = |
| 2019 "network_profile.last_warning_time"; | 2019 "network_profile.last_warning_time"; |
| 2020 | 2020 |
| 2021 #if defined(OS_MACOSX) | 2021 #if defined(OS_MACOSX) |
| 2022 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. | 2022 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. |
| 2023 const char kMacLeopardObsoleteInfobarLastShown[] = | 2023 const char kMacLeopardObsoleteInfobarLastShown[] = |
| 2024 "mac_105_obsolete_infobar_last_shown"; | 2024 "mac_105_obsolete_infobar_last_shown"; |
| 2025 #endif // defined(OS_MACOSX) | 2025 #endif // defined(OS_MACOSX) |
| 2026 | 2026 |
| 2027 } // namespace prefs | 2027 } // namespace prefs |
| OLD | NEW |