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

Side by Side 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, 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
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 [ 5 [
6 { 6 {
7 "namespace": "privacy", 7 "namespace": "privacy",
8 "description": "Use the <code>chrome.privacy</code> API to control usage of the features in Chrome that can affect a user's privacy. This API relies on the <a href='types#ChromeSetting'>ChromeSetting prototype of the type API</a> for ge tting and setting Chrome's configuration.", 8 "description": "Use the <code>chrome.privacy</code> API to control usage of the features in Chrome that can affect a user's privacy. This API relies on the <a href='types#ChromeSetting'>ChromeSetting prototype of the type API</a> for ge tting and setting Chrome's configuration.",
9 "properties": { 9 "properties": {
10 "network": { 10 "network": {
11 "type": "object", 11 "type": "object",
12 "value": {}, 12 "value": {},
13 "description": "Settings that influence Chrome's handling of network con nections in general.", 13 "description": "Settings that influence Chrome's handling of network con nections in general.",
14 "properties": { 14 "properties": {
15 "networkPredictionEnabled": { 15 "networkPredictionEnabled": {
16 "$ref": "types.ChromeSetting", 16 "$ref": "types.ChromeSetting",
17 "value": ["networkPredictionEnabled", {"type":"boolean"}], 17 "value": ["networkPredictionEnabled", {"type":"boolean"}],
18 "description": "If enabled, Chrome attempts to speed up your web bro wsing experience by pre-resolving DNS entries, prerendering sites (<code>&lt;lin k rel='prefetch' ...&gt;</code>), and preemptively opening TCP and SSL connectio ns to servers. This preference's value is a boolean, defaulting to <code>true</ code>." 18 "description": "If enabled, Chrome attempts to speed up your web bro wsing experience by pre-resolving DNS entries, prerendering sites (<code>&lt;lin k rel='prefetch' ...&gt;</code>), and preemptively opening TCP and SSL connectio ns to servers. This preference's value is a boolean, defaulting to <code>true</ code>."
19 }, 19 },
20 "webRTCMultipleRoutesEnabled": { 20 "webRTCMultipleRoutesEnabled": {
21 "$ref": "types.ChromeSetting", 21 "$ref": "types.ChromeSetting",
22 "value": ["webRTCMultipleRoutesEnabled", {"type":"boolean"}], 22 "value": ["webRTCMultipleRoutesEnabled", {"type":"boolean"}],
23 "description": "If enabled, Chrome will explore all possible routing options when using WebRTC to find the most performant path, possibly exposing u ser'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>." 23 "description": "If enabled, Chrome will explore all possible routing options when using WebRTC to find the most performant path, possibly exposing u ser'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>."
24 },
25 "webRTCNonProxiedUdpEnabled": {
26 "$ref": "types.ChromeSetting",
27 "value": ["webRTCNonProxiedUdpEnabled", {"type":"boolean"}],
28 "description": "If enabled, Chrome is allowed to use non-proxied UDP 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 of f effectively forces WebRTC to only use TCP for now, until UDP proxy support is available in Chrome and such proxies are widely deployed. As a result, it also m ight hurt media performance and increase the load for proxy servers. This prefer ence's value is a boolean, defaulting to <code>true</code>."
24 } 29 }
25 } 30 }
26 }, 31 },
27 "services": { 32 "services": {
28 "type": "object", 33 "type": "object",
29 "value": {}, 34 "value": {},
30 "description": "Settings that enable or disable features that require th ird-party network services provided by Google and your default search provider." , 35 "description": "Settings that enable or disable features that require th ird-party network services provided by Google and your default search provider." ,
31 "properties": { 36 "properties": {
32 "alternateErrorPagesEnabled": { 37 "alternateErrorPagesEnabled": {
33 "$ref": "types.ChromeSetting", 38 "$ref": "types.ChromeSetting",
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 "$ref": "types.ChromeSetting", 105 "$ref": "types.ChromeSetting",
101 "value": ["protectedContentEnabled", {"type":"boolean"}], 106 "value": ["protectedContentEnabled", {"type":"boolean"}],
102 "description": "<strong>Available on Windows and ChromeOS only</stro ng>: If enabled, Chrome provides a unique ID to plugins in order to run protecte d content. The value of this preference is of type boolean, and the default valu e is <code>true</code>.", 107 "description": "<strong>Available on Windows and ChromeOS only</stro ng>: If enabled, Chrome provides a unique ID to plugins in order to run protecte d content. The value of this preference is of type boolean, and the default valu e is <code>true</code>.",
103 "platforms": ["windows", "cros", "cros touch"] 108 "platforms": ["windows", "cros", "cros touch"]
104 } 109 }
105 } 110 }
106 } 111 }
107 } 112 }
108 } 113 }
109 ] 114 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698