Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Side by Side Diff: chrome/common/pref_names.cc

Issue 10832035: Switch from SignedSettings to DeviceSettingsService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: once more? Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 1748 matching lines...) Expand 10 before | Expand all | Expand 10 after
1759 const char kAuthNegotiateDelegateWhitelist[] = 1759 const char kAuthNegotiateDelegateWhitelist[] =
1760 "auth.negotiate_delegate_whitelist"; 1760 "auth.negotiate_delegate_whitelist";
1761 // String that specifies the name of a custom GSSAPI library to load. 1761 // String that specifies the name of a custom GSSAPI library to load.
1762 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; 1762 const char kGSSAPILibraryName[] = "auth.gssapi_library_name";
1763 1763
1764 // Boolean that specifies whether to allow basic auth prompting on cross- 1764 // Boolean that specifies whether to allow basic auth prompting on cross-
1765 // domain sub-content requests. 1765 // domain sub-content requests.
1766 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; 1766 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt";
1767 1767
1768 #if defined(OS_CHROMEOS) 1768 #if defined(OS_CHROMEOS)
1769 // Dictionary for transient storage of settings that should go into signed 1769 // Dictionary for transient storage of settings that should go into device
1770 // settings storage before owner has been assigned. 1770 // settings storage before owner has been assigned.
1771 const char kSignedSettingsCache[] = "signed_settings_cache"; 1771 const char kDeviceSettingsCache[] = "signed_settings_cache";
1772 1772
1773 // The hardware keyboard layout of the device. This should look like 1773 // The hardware keyboard layout of the device. This should look like
1774 // "xkb:us::eng". 1774 // "xkb:us::eng".
1775 const char kHardwareKeyboardLayout[] = "intl.hardware_keyboard"; 1775 const char kHardwareKeyboardLayout[] = "intl.hardware_keyboard";
1776 1776
1777 // An integer pref which shows number of times carrier deal promo 1777 // An integer pref which shows number of times carrier deal promo
1778 // notification has been shown to user. 1778 // notification has been shown to user.
1779 const char kCarrierDealPromoShown[] = 1779 const char kCarrierDealPromoShown[] =
1780 "settings.internet.mobile.carrier_deal_promo_shown"; 1780 "settings.internet.mobile.carrier_deal_promo_shown";
1781 1781
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
2021 const char kNetworkProfileLastWarningTime[] = 2021 const char kNetworkProfileLastWarningTime[] =
2022 "network_profile.last_warning_time"; 2022 "network_profile.last_warning_time";
2023 2023
2024 #if defined(OS_MACOSX) 2024 #if defined(OS_MACOSX)
2025 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. 2025 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5.
2026 const char kMacLeopardObsoleteInfobarLastShown[] = 2026 const char kMacLeopardObsoleteInfobarLastShown[] =
2027 "mac_105_obsolete_infobar_last_shown"; 2027 "mac_105_obsolete_infobar_last_shown";
2028 #endif // defined(OS_MACOSX) 2028 #endif // defined(OS_MACOSX)
2029 2029
2030 } // namespace prefs 2030 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698