Chromium Code Reviews| 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 1200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1211 // Whether close proximity between the remote and the local device is required | 1211 // Whether close proximity between the remote and the local device is required |
| 1212 // in order to use Easy Unlock. | 1212 // in order to use Easy Unlock. |
| 1213 const char kEasyUnlockProximityRequired[] = "easy_unlock.proximity_required"; | 1213 const char kEasyUnlockProximityRequired[] = "easy_unlock.proximity_required"; |
| 1214 | 1214 |
| 1215 // Whether to show the Easy Unlock first run tutorial. | 1215 // Whether to show the Easy Unlock first run tutorial. |
| 1216 const char kEasyUnlockShowTutorial[] = "easy_unlock.show_tutorial"; | 1216 const char kEasyUnlockShowTutorial[] = "easy_unlock.show_tutorial"; |
| 1217 | 1217 |
| 1218 // A cache of zero suggest results using JSON serialized into a string. | 1218 // A cache of zero suggest results using JSON serialized into a string. |
| 1219 const char kZeroSuggestCachedResults[] = "zerosuggest.cachedresults"; | 1219 const char kZeroSuggestCachedResults[] = "zerosuggest.cachedresults"; |
| 1220 | 1220 |
| 1221 #if defined(ENABLE_EXTENSIONS) && !defined(OS_ANDROID) && !defined(OS_IOS) | |
| 1221 // These device IDs are used by the copresence component, to uniquely identify | 1222 // These device IDs are used by the copresence component, to uniquely identify |
| 1222 // this device to the server. For privacy, authenticated and unauthenticated | 1223 // this device to the server. For privacy, authenticated and unauthenticated |
| 1223 // calls are made using different device IDs. | 1224 // calls are made using different device IDs. |
| 1224 #if defined(ENABLE_EXTENSIONS) && !defined(OS_ANDROID) && !defined(OS_IOS) | |
| 1225 const char kCopresenceAuthenticatedDeviceId[] = | 1225 const char kCopresenceAuthenticatedDeviceId[] = |
| 1226 "apps.copresence.auth_device_id"; | 1226 "apps.copresence.auth_device_id"; |
| 1227 const char kCopresenceAnonymousDeviceId[] = "apps.copresence.unauth_device_id"; | 1227 const char kCopresenceAnonymousDeviceId[] = "apps.copresence.unauth_device_id"; |
| 1228 | |
| 1229 // Used to indicate whether or not the toolbar redesign bubble has been shown | |
| 1230 // and acknowledged, and the last time the bubble was shown. | |
| 1231 const char kToolbarIconSurfacingBubbleAcknowledged[] = | |
| 1232 "toolbar_icon_surfacing_bubble_acknowledged"; | |
| 1233 extern const char kToolbarIconSurfacingBubbleLastShowTime[] = | |
|
battre
2015/03/19 09:28:45
extern?
Devlin
2015/03/19 16:28:09
Whoops! Copy-paste error. Looks like I wasn't the
| |
| 1234 "toolbar_icon_surfacing_bubble_show_time"; | |
| 1228 #endif | 1235 #endif |
| 1229 | 1236 |
| 1230 // Whether WebRTC should bind to individual NICs to explore all possible routing | 1237 // Whether WebRTC should bind to individual NICs to explore all possible routing |
| 1231 // options. Default is true. | 1238 // options. Default is true. |
| 1232 #if defined(ENABLE_WEBRTC) | 1239 #if defined(ENABLE_WEBRTC) |
| 1233 const char kWebRTCMultipleRoutesEnabled[] = "webrtc.multiple_routes_enabled"; | 1240 const char kWebRTCMultipleRoutesEnabled[] = "webrtc.multiple_routes_enabled"; |
| 1234 #endif | 1241 #endif |
| 1235 | 1242 |
| 1236 // *************** LOCAL STATE *************** | 1243 // *************** LOCAL STATE *************** |
| 1237 // These are attached to the machine/installation | 1244 // These are attached to the machine/installation |
| (...skipping 1044 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2282 // (name and a list of clients that registered the whitelist). | 2289 // (name and a list of clients that registered the whitelist). |
| 2283 const char kRegisteredSupervisedUserWhitelists[] = | 2290 const char kRegisteredSupervisedUserWhitelists[] = |
| 2284 "supervised_users.whitelists"; | 2291 "supervised_users.whitelists"; |
| 2285 | 2292 |
| 2286 #if defined(ENABLE_EXTENSIONS) | 2293 #if defined(ENABLE_EXTENSIONS) |
| 2287 // Policy that indicates how to handle animated images. | 2294 // Policy that indicates how to handle animated images. |
| 2288 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2295 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
| 2289 #endif | 2296 #endif |
| 2290 | 2297 |
| 2291 } // namespace prefs | 2298 } // namespace prefs |
| OLD | NEW |