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/macros.h" | 7 #include "base/macros.h" |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
10 | 10 |
(...skipping 1223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1234 const char kEasyUnlockEnabled[] = "easy_unlock.enabled"; | 1234 const char kEasyUnlockEnabled[] = "easy_unlock.enabled"; |
1235 | 1235 |
1236 // Preference storing Easy Unlock pairing data. | 1236 // Preference storing Easy Unlock pairing data. |
1237 const char kEasyUnlockPairing[] = "easy_unlock.pairing"; | 1237 const char kEasyUnlockPairing[] = "easy_unlock.pairing"; |
1238 | 1238 |
1239 // Whether close proximity between the remote and the local device is required | 1239 // Whether close proximity between the remote and the local device is required |
1240 // in order to use Easy Unlock. | 1240 // in order to use Easy Unlock. |
1241 const char kEasyUnlockProximityRequired[] = "easy_unlock.proximity_required"; | 1241 const char kEasyUnlockProximityRequired[] = "easy_unlock.proximity_required"; |
1242 | 1242 |
1243 #if defined(ENABLE_EXTENSIONS) | 1243 #if defined(ENABLE_EXTENSIONS) |
1244 // These device IDs are used by the copresence component, to uniquely identify | |
1245 // this device to the server. For privacy, authenticated and unauthenticated | |
1246 // calls are made using different device IDs. | |
1247 const char kCopresenceAuthenticatedDeviceId[] = | |
1248 "apps.copresence.auth_device_id"; | |
1249 const char kCopresenceAnonymousDeviceId[] = "apps.copresence.unauth_device_id"; | |
1250 | |
1251 // Used to indicate whether or not the toolbar redesign bubble has been shown | 1244 // Used to indicate whether or not the toolbar redesign bubble has been shown |
1252 // and acknowledged, and the last time the bubble was shown. | 1245 // and acknowledged, and the last time the bubble was shown. |
1253 const char kToolbarIconSurfacingBubbleAcknowledged[] = | 1246 const char kToolbarIconSurfacingBubbleAcknowledged[] = |
1254 "toolbar_icon_surfacing_bubble_acknowledged"; | 1247 "toolbar_icon_surfacing_bubble_acknowledged"; |
1255 const char kToolbarIconSurfacingBubbleLastShowTime[] = | 1248 const char kToolbarIconSurfacingBubbleLastShowTime[] = |
1256 "toolbar_icon_surfacing_bubble_show_time"; | 1249 "toolbar_icon_surfacing_bubble_show_time"; |
1257 | 1250 |
1258 // Used to track component actions in the toolbar that were migrated from | 1251 // Used to track component actions in the toolbar that were migrated from |
1259 // extensions. | 1252 // extensions. |
1260 const char kToolbarMigratedComponentActionStatus[] = | 1253 const char kToolbarMigratedComponentActionStatus[] = |
(...skipping 996 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2257 #endif | 2250 #endif |
2258 | 2251 |
2259 // The base64-encoded representation of the public key to use to validate origin | 2252 // The base64-encoded representation of the public key to use to validate origin |
2260 // trial token signatures. | 2253 // trial token signatures. |
2261 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2254 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
2262 | 2255 |
2263 // A list of origin trial features to disable by policy. | 2256 // A list of origin trial features to disable by policy. |
2264 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2257 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
2265 | 2258 |
2266 } // namespace prefs | 2259 } // namespace prefs |
OLD | NEW |