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 1226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1237 | 1237 |
1238 // These device IDs are used by the copresence component, to uniquely identify | 1238 // These device IDs are used by the copresence component, to uniquely identify |
1239 // this device to the server. For privacy, authenticated and unauthenticated | 1239 // this device to the server. For privacy, authenticated and unauthenticated |
1240 // calls are made using different device IDs. | 1240 // calls are made using different device IDs. |
1241 #if defined(ENABLE_EXTENSIONS) && !defined(OS_ANDROID) && !defined(OS_IOS) | 1241 #if defined(ENABLE_EXTENSIONS) && !defined(OS_ANDROID) && !defined(OS_IOS) |
1242 const char kCopresenceAuthenticatedDeviceId[] = | 1242 const char kCopresenceAuthenticatedDeviceId[] = |
1243 "apps.copresence.auth_device_id"; | 1243 "apps.copresence.auth_device_id"; |
1244 const char kCopresenceAnonymousDeviceId[] = "apps.copresence.unauth_device_id"; | 1244 const char kCopresenceAnonymousDeviceId[] = "apps.copresence.unauth_device_id"; |
1245 #endif | 1245 #endif |
1246 | 1246 |
| 1247 // Whether WebRTC should bind to individual NICs to explore all possible routing |
| 1248 // options. |
| 1249 #if defined(ENABLE_WEBRTC) |
| 1250 const char kWebRTCMultipleRoutesDisabled[] = "webrtc.multiple_routes_disabled"; |
| 1251 #endif |
| 1252 |
1247 // *************** LOCAL STATE *************** | 1253 // *************** LOCAL STATE *************** |
1248 // These are attached to the machine/installation | 1254 // These are attached to the machine/installation |
1249 | 1255 |
1250 // A pref to configure networks device-wide. Its value must be a list of | 1256 // A pref to configure networks device-wide. Its value must be a list of |
1251 // NetworkConfigurations according to the OpenNetworkConfiguration | 1257 // NetworkConfigurations according to the OpenNetworkConfiguration |
1252 // specification. | 1258 // specification. |
1253 // Currently, this pref is only used to store the policy. The user's | 1259 // Currently, this pref is only used to store the policy. The user's |
1254 // configuration is still stored in Shill. | 1260 // configuration is still stored in Shill. |
1255 const char kDeviceOpenNetworkConfiguration[] = "device_onc"; | 1261 const char kDeviceOpenNetworkConfiguration[] = "device_onc"; |
1256 | 1262 |
(...skipping 1023 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2280 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. | 2286 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. |
2281 const char kRecoveryComponentNeedsElevation[] = | 2287 const char kRecoveryComponentNeedsElevation[] = |
2282 "recovery_component.needs_elevation"; | 2288 "recovery_component.needs_elevation"; |
2283 | 2289 |
2284 #if defined(ENABLE_EXTENSIONS) | 2290 #if defined(ENABLE_EXTENSIONS) |
2285 // Policy that indicates how to handle animated images. | 2291 // Policy that indicates how to handle animated images. |
2286 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2292 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
2287 #endif | 2293 #endif |
2288 | 2294 |
2289 } // namespace prefs | 2295 } // namespace prefs |
OLD | NEW |