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

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

Issue 1977923002: Implement pin storage backend. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Rebase Created 4 years, 7 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
« 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) 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/macros.h" 7 #include "base/macros.h"
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "chrome/common/pref_font_webkit_names.h" 9 #include "chrome/common/pref_font_webkit_names.h"
10 10
(...skipping 850 matching lines...) Expand 10 before | Expand all | Expand 10 after
861 // while this is set to true. 861 // while this is set to true.
862 const char kUnifiedDesktopEnabledByDefault[] = 862 const char kUnifiedDesktopEnabledByDefault[] =
863 "settings.display.unified_desktop_enabled_by_default"; 863 "settings.display.unified_desktop_enabled_by_default";
864 864
865 // Whether the Chrome OS lock screen is allowed. 865 // Whether the Chrome OS lock screen is allowed.
866 const char kAllowScreenLock[] = "allow_screen_lock"; 866 const char kAllowScreenLock[] = "allow_screen_lock";
867 867
868 // An int64 pref. This is a timestamp of the most recent time the profile took 868 // An int64 pref. This is a timestamp of the most recent time the profile took
869 // or dismissed HaTS (happiness-tracking) survey. 869 // or dismissed HaTS (happiness-tracking) survey.
870 const char kHatsLastInteractionTimestamp[] = "hats_last_interaction_timestamp"; 870 const char kHatsLastInteractionTimestamp[] = "hats_last_interaction_timestamp";
871
872 // The salt and hash for the pin quick unlock mechanism.
873 const char kQuickUnlockPinSalt[] = "quick_unlock.pin.salt";
874 const char kQuickUnlockPinSecret[] = "quick_unlock.pin.secret";
871 #endif // defined(OS_CHROMEOS) 875 #endif // defined(OS_CHROMEOS)
872 876
873 // A boolean pref set to true if a Home button to open the Home pages should be 877 // A boolean pref set to true if a Home button to open the Home pages should be
874 // visible on the toolbar. 878 // visible on the toolbar.
875 const char kShowHomeButton[] = "browser.show_home_button"; 879 const char kShowHomeButton[] = "browser.show_home_button";
876 880
877 // A string value which saves short list of recently user selected encodings 881 // A string value which saves short list of recently user selected encodings
878 // separated with comma punctuation mark. 882 // separated with comma punctuation mark.
879 const char kRecentlySelectedEncoding[] = "profile.recently_selected_encodings"; 883 const char kRecentlySelectedEncoding[] = "profile.recently_selected_encodings";
880 884
(...skipping 1293 matching lines...) Expand 10 before | Expand all | Expand 10 after
2174 const char kMediaRouterEnableCloudServices[] = 2178 const char kMediaRouterEnableCloudServices[] =
2175 "media_router.cloudservices.enabled"; 2179 "media_router.cloudservices.enabled";
2176 #endif // defined(GOOGLE_CHROME_BUILD) 2180 #endif // defined(GOOGLE_CHROME_BUILD)
2177 // Whether or not the Media Router first run flow has been acknowledged by the 2181 // Whether or not the Media Router first run flow has been acknowledged by the
2178 // user. 2182 // user.
2179 const char kMediaRouterFirstRunFlowAcknowledged[] = 2183 const char kMediaRouterFirstRunFlowAcknowledged[] =
2180 "media_router.firstrunflow.acknowledged"; 2184 "media_router.firstrunflow.acknowledged";
2181 #endif 2185 #endif
2182 2186
2183 } // namespace prefs 2187 } // 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