| 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 1165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1176 // Whether Easy Unlock is enabled. | 1176 // Whether Easy Unlock is enabled. |
| 1177 const char kEasyUnlockEnabled[] = "easy_unlock.enabled"; | 1177 const char kEasyUnlockEnabled[] = "easy_unlock.enabled"; |
| 1178 | 1178 |
| 1179 // Preference storing Easy Unlock pairing data. | 1179 // Preference storing Easy Unlock pairing data. |
| 1180 const char kEasyUnlockPairing[] = "easy_unlock.pairing"; | 1180 const char kEasyUnlockPairing[] = "easy_unlock.pairing"; |
| 1181 | 1181 |
| 1182 // Whether close proximity between the remote and the local device is required | 1182 // Whether close proximity between the remote and the local device is required |
| 1183 // in order to use Easy Unlock. | 1183 // in order to use Easy Unlock. |
| 1184 const char kEasyUnlockProximityRequired[] = "easy_unlock.proximity_required"; | 1184 const char kEasyUnlockProximityRequired[] = "easy_unlock.proximity_required"; |
| 1185 | 1185 |
| 1186 #if defined(ENABLE_EXTENSIONS) && !defined(OS_ANDROID) && !defined(OS_IOS) | 1186 #if defined(ENABLE_EXTENSIONS) |
| 1187 // These device IDs are used by the copresence component, to uniquely identify | 1187 // These device IDs are used by the copresence component, to uniquely identify |
| 1188 // this device to the server. For privacy, authenticated and unauthenticated | 1188 // this device to the server. For privacy, authenticated and unauthenticated |
| 1189 // calls are made using different device IDs. | 1189 // calls are made using different device IDs. |
| 1190 const char kCopresenceAuthenticatedDeviceId[] = | 1190 const char kCopresenceAuthenticatedDeviceId[] = |
| 1191 "apps.copresence.auth_device_id"; | 1191 "apps.copresence.auth_device_id"; |
| 1192 const char kCopresenceAnonymousDeviceId[] = "apps.copresence.unauth_device_id"; | 1192 const char kCopresenceAnonymousDeviceId[] = "apps.copresence.unauth_device_id"; |
| 1193 | 1193 |
| 1194 // Used to indicate whether or not the toolbar redesign bubble has been shown | 1194 // Used to indicate whether or not the toolbar redesign bubble has been shown |
| 1195 // and acknowledged, and the last time the bubble was shown. | 1195 // and acknowledged, and the last time the bubble was shown. |
| 1196 const char kToolbarIconSurfacingBubbleAcknowledged[] = | 1196 const char kToolbarIconSurfacingBubbleAcknowledged[] = |
| (...skipping 991 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2188 // Policy that indicates how to handle animated images. | 2188 // Policy that indicates how to handle animated images. |
| 2189 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2189 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
| 2190 #endif | 2190 #endif |
| 2191 | 2191 |
| 2192 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2192 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
| 2193 | 2193 |
| 2194 const char kAllowDinosaurEasterEgg[] = | 2194 const char kAllowDinosaurEasterEgg[] = |
| 2195 "allow_dinosaur_easter_egg"; | 2195 "allow_dinosaur_easter_egg"; |
| 2196 | 2196 |
| 2197 } // namespace prefs | 2197 } // namespace prefs |
| OLD | NEW |