| 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 1206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1217 // Preference storing Easy Unlock pairing data. | 1217 // Preference storing Easy Unlock pairing data. |
| 1218 const char kEasyUnlockPairing[] = "easy_unlock.pairing"; | 1218 const char kEasyUnlockPairing[] = "easy_unlock.pairing"; |
| 1219 | 1219 |
| 1220 // Whether close proximity between the remote and the local device is required | 1220 // Whether close proximity between the remote and the local device is required |
| 1221 // in order to use Easy Unlock. | 1221 // in order to use Easy Unlock. |
| 1222 const char kEasyUnlockProximityRequired[] = "easy_unlock.proximity_required"; | 1222 const char kEasyUnlockProximityRequired[] = "easy_unlock.proximity_required"; |
| 1223 | 1223 |
| 1224 // Whether to show the Easy Unlock first run tutorial. | 1224 // Whether to show the Easy Unlock first run tutorial. |
| 1225 const char kEasyUnlockShowTutorial[] = "easy_unlock.show_tutorial"; | 1225 const char kEasyUnlockShowTutorial[] = "easy_unlock.show_tutorial"; |
| 1226 | 1226 |
| 1227 // A dictionary in local state containing each user's Easy Unlock profile |
| 1228 // preferences, so they can be accessed outside of the user's profile. The value |
| 1229 // is a dictionary containing an entry for each user. Each user's entry mirrors |
| 1230 // their profile's Easy Unlock preferences. |
| 1231 const char kEasyUnlockLocalStateUserPrefs[] = "easy_unlock.user_prefs"; |
| 1232 |
| 1227 // A cache of zero suggest results using JSON serialized into a string. | 1233 // A cache of zero suggest results using JSON serialized into a string. |
| 1228 const char kZeroSuggestCachedResults[] = "zerosuggest.cachedresults"; | 1234 const char kZeroSuggestCachedResults[] = "zerosuggest.cachedresults"; |
| 1229 | 1235 |
| 1230 // These device IDs are used by the copresence component, to uniquely identify | 1236 // These device IDs are used by the copresence component, to uniquely identify |
| 1231 // this device to the server. For privacy, authenticated and unauthenticated | 1237 // this device to the server. For privacy, authenticated and unauthenticated |
| 1232 // calls are made using different device IDs. | 1238 // calls are made using different device IDs. |
| 1233 #if defined(ENABLE_EXTENSIONS) && !defined(OS_ANDROID) && !defined(OS_IOS) | 1239 #if defined(ENABLE_EXTENSIONS) && !defined(OS_ANDROID) && !defined(OS_IOS) |
| 1234 const char kCopresenceAuthenticatedDeviceId[] = | 1240 const char kCopresenceAuthenticatedDeviceId[] = |
| 1235 "apps.copresence.auth_device_id"; | 1241 "apps.copresence.auth_device_id"; |
| 1236 const char kCopresenceAnonymousDeviceId[] = "apps.copresence.unauth_device_id"; | 1242 const char kCopresenceAnonymousDeviceId[] = "apps.copresence.unauth_device_id"; |
| (...skipping 1018 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 |