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

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

Issue 8727037: Signed settings refactoring: Proper caching and more tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments. Fixed small bugs. Rebased to ToT. Created 9 years 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
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1525 matching lines...) Expand 10 before | Expand all | Expand 10 after
1536 // String that specifies the name of a custom GSSAPI library to load. 1536 // String that specifies the name of a custom GSSAPI library to load.
1537 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; 1537 const char kGSSAPILibraryName[] = "auth.gssapi_library_name";
1538 1538
1539 // Boolean that specifies whether to allow basic auth prompting on cross- 1539 // Boolean that specifies whether to allow basic auth prompting on cross-
1540 // domain sub-content requests. 1540 // domain sub-content requests.
1541 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; 1541 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt";
1542 1542
1543 #if defined(OS_CHROMEOS) 1543 #if defined(OS_CHROMEOS)
1544 // Dictionary for transient storage of settings that should go into signed 1544 // Dictionary for transient storage of settings that should go into signed
1545 // settings storage before owner has been assigned. 1545 // settings storage before owner has been assigned.
1546 const char kSignedSettingsTempStorage[] = "signed_settings_temp_storage"; 1546 const char kSignedSettingsCache[] = "signed_settings_cache";
1547 1547
1548 // The hardware keyboard layout of the device. This should look like 1548 // The hardware keyboard layout of the device. This should look like
1549 // "xkb:us::eng". 1549 // "xkb:us::eng".
1550 const char kHardwareKeyboardLayout[] = "intl.hardware_keyboard"; 1550 const char kHardwareKeyboardLayout[] = "intl.hardware_keyboard";
1551 1551
1552 // An integer pref which shows number of times carrier deal promo 1552 // An integer pref which shows number of times carrier deal promo
1553 // notification has been shown to user. 1553 // notification has been shown to user.
1554 const char kCarrierDealPromoShown[] = 1554 const char kCarrierDealPromoShown[] =
1555 "settings.internet.mobile.carrier_deal_promo_shown"; 1555 "settings.internet.mobile.carrier_deal_promo_shown";
1556 #endif 1556 #endif
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
1680 1680
1681 // String that represents the recovery component last downloaded version. This 1681 // String that represents the recovery component last downloaded version. This
1682 // takes the usual 'a.b.c.d' notation. 1682 // takes the usual 'a.b.c.d' notation.
1683 const char kRecoveryComponentVersion[] = "recovery_component.version"; 1683 const char kRecoveryComponentVersion[] = "recovery_component.version";
1684 1684
1685 // String that stores the component updater last known state. This is used for 1685 // String that stores the component updater last known state. This is used for
1686 // troubleshooting. 1686 // troubleshooting.
1687 const char kComponentUpdaterState[] = "component_updater.state"; 1687 const char kComponentUpdaterState[] = "component_updater.state";
1688 1688
1689 } // namespace prefs 1689 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698