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 1196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1207 // How many Service Workers are registered with the Push API (could be zero). | 1207 // How many Service Workers are registered with the Push API (could be zero). |
1208 const char kPushMessagingRegistrationCount[] = | 1208 const char kPushMessagingRegistrationCount[] = |
1209 "gcm.push_messaging_registration_count"; | 1209 "gcm.push_messaging_registration_count"; |
1210 | 1210 |
1211 // Whether a user is allowed to use Easy Unlock. | 1211 // Whether a user is allowed to use Easy Unlock. |
1212 const char kEasyUnlockAllowed[] = "easy_unlock.allowed"; | 1212 const char kEasyUnlockAllowed[] = "easy_unlock.allowed"; |
1213 | 1213 |
1214 // Whether Easy Unlock is enabled. | 1214 // Whether Easy Unlock is enabled. |
1215 const char kEasyUnlockEnabled[] = "easy_unlock.enabled"; | 1215 const char kEasyUnlockEnabled[] = "easy_unlock.enabled"; |
1216 | 1216 |
| 1217 // A dictionary in local state containing each user's Easy Unlock profile |
| 1218 // preferences, so they can be accessed outside of the user's profile. The value |
| 1219 // is a dictionary containing an entry for each user. Each user's entry mirrors |
| 1220 // their profile's Easy Unlock preferences. |
| 1221 const char kEasyUnlockLocalStateUserPrefs[] = "easy_unlock.user_prefs"; |
| 1222 |
1217 // Preference storing Easy Unlock pairing data. | 1223 // Preference storing Easy Unlock pairing data. |
1218 const char kEasyUnlockPairing[] = "easy_unlock.pairing"; | 1224 const char kEasyUnlockPairing[] = "easy_unlock.pairing"; |
1219 | 1225 |
1220 // Whether close proximity between the remote and the local device is required | 1226 // Whether close proximity between the remote and the local device is required |
1221 // in order to use Easy Unlock. | 1227 // in order to use Easy Unlock. |
1222 const char kEasyUnlockProximityRequired[] = "easy_unlock.proximity_required"; | 1228 const char kEasyUnlockProximityRequired[] = "easy_unlock.proximity_required"; |
1223 | 1229 |
1224 // Whether to show the Easy Unlock first run tutorial. | 1230 // Whether to show the Easy Unlock first run tutorial. |
1225 const char kEasyUnlockShowTutorial[] = "easy_unlock.show_tutorial"; | 1231 const char kEasyUnlockShowTutorial[] = "easy_unlock.show_tutorial"; |
1226 | 1232 |
(...skipping 1028 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2255 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; | 2261 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; |
2256 | 2262 |
2257 // Last user's interaction with the password bubble. | 2263 // Last user's interaction with the password bubble. |
2258 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; | 2264 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; |
2259 | 2265 |
2260 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. | 2266 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. |
2261 const char kRecoveryComponentNeedsElevation[] = | 2267 const char kRecoveryComponentNeedsElevation[] = |
2262 "recovery_component.needs_elevation"; | 2268 "recovery_component.needs_elevation"; |
2263 | 2269 |
2264 } // namespace prefs | 2270 } // namespace prefs |
OLD | NEW |