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 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 2263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2274 | 2274 |
2275 // Whether Guest Mode is enabled within the browser. | 2275 // Whether Guest Mode is enabled within the browser. |
2276 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; | 2276 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; |
2277 | 2277 |
2278 // Whether Adding a new Person is enabled within the user manager. | 2278 // Whether Adding a new Person is enabled within the user manager. |
2279 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; | 2279 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; |
2280 | 2280 |
2281 // A dictionary that maps user id to hardlock state. | 2281 // A dictionary that maps user id to hardlock state. |
2282 const char kEasyUnlockHardlockState[] = "easy_unlock.hardlock_state"; | 2282 const char kEasyUnlockHardlockState[] = "easy_unlock.hardlock_state"; |
2283 | 2283 |
| 2284 // A dictionary that maps user id to public part of RSA key pair used by |
| 2285 // Easy Sign-in for the user. |
| 2286 const char kEasyUnlockLocalStateTpmKeys[] = "easy_unlock.public_tpm_keys"; |
| 2287 |
2284 // The beginning of time span when we count user's "Nope" for the password | 2288 // The beginning of time span when we count user's "Nope" for the password |
2285 // bubble. | 2289 // bubble. |
2286 const char kPasswordBubbleTimeStamp[] = "password_bubble.timestamp"; | 2290 const char kPasswordBubbleTimeStamp[] = "password_bubble.timestamp"; |
2287 | 2291 |
2288 // The count of user's "Nope" for the password bubble. | 2292 // The count of user's "Nope" for the password bubble. |
2289 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; | 2293 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; |
2290 | 2294 |
2291 // Last user's interaction with the password bubble. | 2295 // Last user's interaction with the password bubble. |
2292 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; | 2296 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; |
2293 | 2297 |
2294 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. | 2298 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. |
2295 const char kRecoveryComponentNeedsElevation[] = | 2299 const char kRecoveryComponentNeedsElevation[] = |
2296 "recovery_component.needs_elevation"; | 2300 "recovery_component.needs_elevation"; |
2297 | 2301 |
2298 } // namespace prefs | 2302 } // namespace prefs |
OLD | NEW |