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 1217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1228 // Preference storing Easy Unlock pairing data. | 1228 // Preference storing Easy Unlock pairing data. |
1229 const char kEasyUnlockPairing[] = "easy_unlock.pairing"; | 1229 const char kEasyUnlockPairing[] = "easy_unlock.pairing"; |
1230 | 1230 |
1231 // Whether close proximity between the remote and the local device is required | 1231 // Whether close proximity between the remote and the local device is required |
1232 // in order to use Easy Unlock. | 1232 // in order to use Easy Unlock. |
1233 const char kEasyUnlockProximityRequired[] = "easy_unlock.proximity_required"; | 1233 const char kEasyUnlockProximityRequired[] = "easy_unlock.proximity_required"; |
1234 | 1234 |
1235 // Whether to show the Easy Unlock first run tutorial. | 1235 // Whether to show the Easy Unlock first run tutorial. |
1236 const char kEasyUnlockShowTutorial[] = "easy_unlock.show_tutorial"; | 1236 const char kEasyUnlockShowTutorial[] = "easy_unlock.show_tutorial"; |
1237 | 1237 |
| 1238 // The public part of RSA key pair used by Easy Signin for user. The key pair |
| 1239 // is stored in system TPM slot. |
| 1240 const char kEasyUnlockUserTpmKey[] = "easy_unlock.public_tpm_key"; |
| 1241 |
1238 // A cache of zero suggest results using JSON serialized into a string. | 1242 // A cache of zero suggest results using JSON serialized into a string. |
1239 const char kZeroSuggestCachedResults[] = "zerosuggest.cachedresults"; | 1243 const char kZeroSuggestCachedResults[] = "zerosuggest.cachedresults"; |
1240 | 1244 |
1241 // *************** LOCAL STATE *************** | 1245 // *************** LOCAL STATE *************** |
1242 // These are attached to the machine/installation | 1246 // These are attached to the machine/installation |
1243 | 1247 |
1244 // A pref to configure networks device-wide. Its value must be a list of | 1248 // A pref to configure networks device-wide. Its value must be a list of |
1245 // NetworkConfigurations according to the OpenNetworkConfiguration | 1249 // NetworkConfigurations according to the OpenNetworkConfiguration |
1246 // specification. | 1250 // specification. |
1247 // Currently, this pref is only used to store the policy. The user's | 1251 // Currently, this pref is only used to store the policy. The user's |
(...skipping 1036 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2284 | 2288 |
2285 // Whether Guest Mode is enabled within the browser. | 2289 // Whether Guest Mode is enabled within the browser. |
2286 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; | 2290 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; |
2287 | 2291 |
2288 // Whether Adding a new Person is enabled within the user manager. | 2292 // Whether Adding a new Person is enabled within the user manager. |
2289 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; | 2293 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; |
2290 | 2294 |
2291 // A dictionary that maps user id to hardlock state. | 2295 // A dictionary that maps user id to hardlock state. |
2292 const char kEasyUnlockHardlockState[] = "easy_unlock.hardlock_state"; | 2296 const char kEasyUnlockHardlockState[] = "easy_unlock.hardlock_state"; |
2293 | 2297 |
| 2298 // A dictionary that maps user id to public part of RSA key pair used by |
| 2299 // Easy Sign-in for the user. |
| 2300 const char kEasyUnlockLocalStateTpmKeys[] = "easy_unlock.public_tpm_keys"; |
| 2301 |
2294 // The beginning of time span when we count user's "Nope" for the password | 2302 // The beginning of time span when we count user's "Nope" for the password |
2295 // bubble. | 2303 // bubble. |
2296 const char kPasswordBubbleTimeStamp[] = "password_bubble.timestamp"; | 2304 const char kPasswordBubbleTimeStamp[] = "password_bubble.timestamp"; |
2297 | 2305 |
2298 // The count of user's "Nope" for the password bubble. | 2306 // The count of user's "Nope" for the password bubble. |
2299 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; | 2307 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; |
2300 | 2308 |
2301 // Last user's interaction with the password bubble. | 2309 // Last user's interaction with the password bubble. |
2302 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; | 2310 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; |
2303 | 2311 |
2304 } // namespace prefs | 2312 } // namespace prefs |
OLD | NEW |