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 1175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1186 const char kCopresenceAnonymousDeviceId[] = "apps.copresence.unauth_device_id"; | 1186 const char kCopresenceAnonymousDeviceId[] = "apps.copresence.unauth_device_id"; |
| 1187 | 1187 |
| 1188 // Used to indicate whether or not the toolbar redesign bubble has been shown | 1188 // Used to indicate whether or not the toolbar redesign bubble has been shown |
| 1189 // and acknowledged, and the last time the bubble was shown. | 1189 // and acknowledged, and the last time the bubble was shown. |
| 1190 const char kToolbarIconSurfacingBubbleAcknowledged[] = | 1190 const char kToolbarIconSurfacingBubbleAcknowledged[] = |
| 1191 "toolbar_icon_surfacing_bubble_acknowledged"; | 1191 "toolbar_icon_surfacing_bubble_acknowledged"; |
| 1192 const char kToolbarIconSurfacingBubbleLastShowTime[] = | 1192 const char kToolbarIconSurfacingBubbleLastShowTime[] = |
| 1193 "toolbar_icon_surfacing_bubble_show_time"; | 1193 "toolbar_icon_surfacing_bubble_show_time"; |
| 1194 #endif | 1194 #endif |
| 1195 | 1195 |
| 1196 #if defined(ENABLE_WEBRTC) | |
| 1196 // Whether WebRTC should bind to individual NICs to explore all possible routing | 1197 // Whether WebRTC should bind to individual NICs to explore all possible routing |
| 1197 // options. Default is true. | 1198 // options. Default is true. |
| 1198 #if defined(ENABLE_WEBRTC) | |
| 1199 const char kWebRTCMultipleRoutesEnabled[] = "webrtc.multiple_routes_enabled"; | 1199 const char kWebRTCMultipleRoutesEnabled[] = "webrtc.multiple_routes_enabled"; |
| 1200 // Whether WebRTC can use nonproxied UDP to connect. When this is true, WebRTC | |
| 1201 // will use UDP transport which doesn't use proxy and might leak IP addresses | |
| 1202 // when no UDP-supporting proxy is configured. Default is true. | |
| 1203 const char kWebRTCNonProxiedUdpTransportEnabled[] = | |
|
pthatcher2
2015/08/26 21:09:59
Might be more clear as "Whether WebRTC should use
| |
| 1204 "webrtc.nonproxied_udp_transport_enabled"; | |
| 1200 #endif | 1205 #endif |
| 1201 | 1206 |
| 1202 // *************** LOCAL STATE *************** | 1207 // *************** LOCAL STATE *************** |
| 1203 // These are attached to the machine/installation | 1208 // These are attached to the machine/installation |
| 1204 | 1209 |
| 1205 // A pref to configure networks device-wide. Its value must be a list of | 1210 // A pref to configure networks device-wide. Its value must be a list of |
| 1206 // NetworkConfigurations according to the OpenNetworkConfiguration | 1211 // NetworkConfigurations according to the OpenNetworkConfiguration |
| 1207 // specification. | 1212 // specification. |
| 1208 // Currently, this pref is only used to store the policy. The user's | 1213 // Currently, this pref is only used to store the policy. The user's |
| 1209 // configuration is still stored in Shill. | 1214 // configuration is still stored in Shill. |
| (...skipping 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2213 "supervised_users.whitelists"; | 2218 "supervised_users.whitelists"; |
| 2214 | 2219 |
| 2215 #if defined(ENABLE_EXTENSIONS) | 2220 #if defined(ENABLE_EXTENSIONS) |
| 2216 // Policy that indicates how to handle animated images. | 2221 // Policy that indicates how to handle animated images. |
| 2217 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2222 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
| 2218 #endif | 2223 #endif |
| 2219 | 2224 |
| 2220 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2225 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
| 2221 | 2226 |
| 2222 } // namespace prefs | 2227 } // namespace prefs |
| OLD | NEW |