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

Unified Diff: chrome/common/extensions/api/privacy.json

Issue 1315223002: Add `privacy.network.webRTCNonProxiedUdpTransportEnabled` to extensions API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/api/privacy.json
diff --git a/chrome/common/extensions/api/privacy.json b/chrome/common/extensions/api/privacy.json
index 504b30c4faf75ea02ff6ac7ef0556bdd30b5959a..39b0696c0fc54b9789cf26e41ba15c697956892e 100644
--- a/chrome/common/extensions/api/privacy.json
+++ b/chrome/common/extensions/api/privacy.json
@@ -21,6 +21,11 @@
"$ref": "types.ChromeSetting",
"value": ["webRTCMultipleRoutesEnabled", {"type":"boolean"}],
"description": "If enabled, Chrome will explore all possible routing options when using WebRTC to find the most performant path, possibly exposing user's private IP address. Otherwise, WebRTC traffic will be routed the same way as regular HTTP. This preference's value is a boolean, defaulting to <code>true</code>."
+ },
+ "webRTCNonProxiedUdpTransportEnabled": {
+ "$ref": "types.ChromeSetting",
+ "value": ["webRTCNonProxiedUdpTransportEnabled", {"type":"boolean"}],
+ "description": "If enabled, Chrome will use non-proxied UDP transport to connect to peers or TURN servers when using WebRTC. Since most proxy servers don't handle UDP, using UDP possibly exposes user's IP address. Turning this off force WebRTC to only use TCP. This preference's value is a boolean, defaulting to <code>true</code>."
juberti 2015/08/28 17:27:19 Should mention that this will hurt performance and
guoweis_left_chromium 2015/08/28 17:32:26 Done.
}
}
},

Powered by Google App Engine
This is Rietveld 408576698