Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: chrome/common/pref_names.cc

Issue 1309543004: Create a new preference which disables UDP protocol for WebRTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/common/pref_names.h ('k') | content/common/view_messages.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1170 matching lines...) Expand 10 before | Expand all | Expand 10 after
1181 const char kCopresenceAnonymousDeviceId[] = "apps.copresence.unauth_device_id"; 1181 const char kCopresenceAnonymousDeviceId[] = "apps.copresence.unauth_device_id";
1182 1182
1183 // Used to indicate whether or not the toolbar redesign bubble has been shown 1183 // Used to indicate whether or not the toolbar redesign bubble has been shown
1184 // and acknowledged, and the last time the bubble was shown. 1184 // and acknowledged, and the last time the bubble was shown.
1185 const char kToolbarIconSurfacingBubbleAcknowledged[] = 1185 const char kToolbarIconSurfacingBubbleAcknowledged[] =
1186 "toolbar_icon_surfacing_bubble_acknowledged"; 1186 "toolbar_icon_surfacing_bubble_acknowledged";
1187 const char kToolbarIconSurfacingBubbleLastShowTime[] = 1187 const char kToolbarIconSurfacingBubbleLastShowTime[] =
1188 "toolbar_icon_surfacing_bubble_show_time"; 1188 "toolbar_icon_surfacing_bubble_show_time";
1189 #endif 1189 #endif
1190 1190
1191 #if defined(ENABLE_WEBRTC)
1191 // Whether WebRTC should bind to individual NICs to explore all possible routing 1192 // Whether WebRTC should bind to individual NICs to explore all possible routing
1192 // options. Default is true. 1193 // options. Default is true.
1193 #if defined(ENABLE_WEBRTC)
1194 const char kWebRTCMultipleRoutesEnabled[] = "webrtc.multiple_routes_enabled"; 1194 const char kWebRTCMultipleRoutesEnabled[] = "webrtc.multiple_routes_enabled";
1195 // Whether WebRTC should use non-proxied UDP. If false, WebRTC will not send UDP
1196 // unless it goes through a proxy (i.e RETURN when it's available). If no UDP
1197 // proxy is configured, it will not send UDP. If true, WebRTC will send UDP
1198 // regardless of whether or not a proxy is configured.
1199 const char kWebRTCNonProxiedUdpTransportEnabled[] =
1200 "webrtc.nonproxied_udp_transport_enabled";
1195 #endif 1201 #endif
1196 1202
1197 // *************** LOCAL STATE *************** 1203 // *************** LOCAL STATE ***************
1198 // These are attached to the machine/installation 1204 // These are attached to the machine/installation
1199 1205
1200 // A pref to configure networks device-wide. Its value must be a list of 1206 // A pref to configure networks device-wide. Its value must be a list of
1201 // NetworkConfigurations according to the OpenNetworkConfiguration 1207 // NetworkConfigurations according to the OpenNetworkConfiguration
1202 // specification. 1208 // specification.
1203 // Currently, this pref is only used to store the policy. The user's 1209 // Currently, this pref is only used to store the policy. The user's
1204 // configuration is still stored in Shill. 1210 // configuration is still stored in Shill.
(...skipping 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after
2208 "supervised_users.whitelists"; 2214 "supervised_users.whitelists";
2209 2215
2210 #if defined(ENABLE_EXTENSIONS) 2216 #if defined(ENABLE_EXTENSIONS)
2211 // Policy that indicates how to handle animated images. 2217 // Policy that indicates how to handle animated images.
2212 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; 2218 const char kAnimationPolicy[] = "settings.a11y.animation_policy";
2213 #endif 2219 #endif
2214 2220
2215 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; 2221 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload";
2216 2222
2217 } // namespace prefs 2223 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | content/common/view_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698