OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 1515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1526 // String that specifies the name of a custom GSSAPI library to load. | 1526 // String that specifies the name of a custom GSSAPI library to load. |
1527 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; | 1527 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; |
1528 | 1528 |
1529 // Boolean that specifies whether to allow basic auth prompting on cross- | 1529 // Boolean that specifies whether to allow basic auth prompting on cross- |
1530 // domain sub-content requests. | 1530 // domain sub-content requests. |
1531 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; | 1531 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; |
1532 | 1532 |
1533 #if defined(OS_CHROMEOS) | 1533 #if defined(OS_CHROMEOS) |
1534 // Dictionary for transient storage of settings that should go into signed | 1534 // Dictionary for transient storage of settings that should go into signed |
1535 // settings storage before owner has been assigned. | 1535 // settings storage before owner has been assigned. |
1536 const char kSignedSettingsTempStorage[] = "signed_settings_temp_storage"; | 1536 const char kSignedSettingsCache[] = "signed_settings_cache"; |
1537 | 1537 |
1538 // The hardware keyboard layout of the device. This should look like | 1538 // The hardware keyboard layout of the device. This should look like |
1539 // "xkb:us::eng". | 1539 // "xkb:us::eng". |
1540 const char kHardwareKeyboardLayout[] = "intl.hardware_keyboard"; | 1540 const char kHardwareKeyboardLayout[] = "intl.hardware_keyboard"; |
1541 | 1541 |
1542 // An integer pref which shows number of times carrier deal promo | 1542 // An integer pref which shows number of times carrier deal promo |
1543 // notification has been shown to user. | 1543 // notification has been shown to user. |
1544 const char kCarrierDealPromoShown[] = | 1544 const char kCarrierDealPromoShown[] = |
1545 "settings.internet.mobile.carrier_deal_promo_shown"; | 1545 "settings.internet.mobile.carrier_deal_promo_shown"; |
1546 #endif | 1546 #endif |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1670 | 1670 |
1671 // String that represents the recovery component last downloaded version. This | 1671 // String that represents the recovery component last downloaded version. This |
1672 // takes the usual 'a.b.c.d' notation. | 1672 // takes the usual 'a.b.c.d' notation. |
1673 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1673 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
1674 | 1674 |
1675 // String that stores the component updater last known state. This is used for | 1675 // String that stores the component updater last known state. This is used for |
1676 // troubleshooting. | 1676 // troubleshooting. |
1677 const char kComponentUpdaterState[] = "component_updater.state"; | 1677 const char kComponentUpdaterState[] = "component_updater.state"; |
1678 | 1678 |
1679 } // namespace prefs | 1679 } // namespace prefs |
OLD | NEW |