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

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

Issue 916873004: Add a Preference to allow WebRTC only bind to "any address" (all 0s) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 1230 matching lines...) Expand 10 before | Expand all | Expand 10 after
1241 1241
1242 // These device IDs are used by the copresence component, to uniquely identify 1242 // These device IDs are used by the copresence component, to uniquely identify
1243 // this device to the server. For privacy, authenticated and unauthenticated 1243 // this device to the server. For privacy, authenticated and unauthenticated
1244 // calls are made using different device IDs. 1244 // calls are made using different device IDs.
1245 #if defined(ENABLE_EXTENSIONS) && !defined(OS_ANDROID) && !defined(OS_IOS) 1245 #if defined(ENABLE_EXTENSIONS) && !defined(OS_ANDROID) && !defined(OS_IOS)
1246 const char kCopresenceAuthenticatedDeviceId[] = 1246 const char kCopresenceAuthenticatedDeviceId[] =
1247 "apps.copresence.auth_device_id"; 1247 "apps.copresence.auth_device_id";
1248 const char kCopresenceAnonymousDeviceId[] = "apps.copresence.unauth_device_id"; 1248 const char kCopresenceAnonymousDeviceId[] = "apps.copresence.unauth_device_id";
1249 #endif 1249 #endif
1250 1250
1251 // Whether WebRTC should bind to individual NICs to explore all possible routing
1252 // options. Default is true.
1253 #if defined(ENABLE_WEBRTC)
1254 const char kWebRTCMultipleRoutesEnabled[] = "webrtc.multiple_routes_enabled";
1255 #endif
1256
1251 // *************** LOCAL STATE *************** 1257 // *************** LOCAL STATE ***************
1252 // These are attached to the machine/installation 1258 // These are attached to the machine/installation
1253 1259
1254 // A pref to configure networks device-wide. Its value must be a list of 1260 // A pref to configure networks device-wide. Its value must be a list of
1255 // NetworkConfigurations according to the OpenNetworkConfiguration 1261 // NetworkConfigurations according to the OpenNetworkConfiguration
1256 // specification. 1262 // specification.
1257 // Currently, this pref is only used to store the policy. The user's 1263 // Currently, this pref is only used to store the policy. The user's
1258 // configuration is still stored in Shill. 1264 // configuration is still stored in Shill.
1259 const char kDeviceOpenNetworkConfiguration[] = "device_onc"; 1265 const char kDeviceOpenNetworkConfiguration[] = "device_onc";
1260 1266
(...skipping 1021 matching lines...) Expand 10 before | Expand all | Expand 10 after
2282 // (name and a list of clients that registered the whitelist). 2288 // (name and a list of clients that registered the whitelist).
2283 const char kRegisteredSupervisedUserWhitelists[] = 2289 const char kRegisteredSupervisedUserWhitelists[] =
2284 "supervised_users.whitelists"; 2290 "supervised_users.whitelists";
2285 2291
2286 #if defined(ENABLE_EXTENSIONS) 2292 #if defined(ENABLE_EXTENSIONS)
2287 // Policy that indicates how to handle animated images. 2293 // Policy that indicates how to handle animated images.
2288 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; 2294 const char kAnimationPolicy[] = "settings.a11y.animation_policy";
2289 #endif 2295 #endif
2290 2296
2291 } // namespace prefs 2297 } // 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