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 [ | 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><lin k rel='prefetch' ...></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><lin k rel='prefetch' ...></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 "webRTCNonProxiedUdpTransportEnabled": { | |
26 "$ref": "types.ChromeSetting", | |
27 "value": ["webRTCNonProxiedUdpTransportEnabled", {"type":"boolean"}] , | |
28 "description": "If enabled, Chrome will use non-proxied UDP transpor t to connect to peers or TURN servers when using WebRTC. Since most proxy server s don't handle UDP, using UDP possibly exposes user's IP address. Turning this o ff force WebRTC to only use TCP. This preference's value is a boolean, defaultin g 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.
| |
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 Loading... | |
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 ] |
OLD | NEW |