| 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> module to control usage
of the features in Chrome that can affect a user's privacy. This module relies o
n the <a href='types.html#ChromeSetting'>ChromeSetting prototype of the type API
</a> for getting and setting Chrome's configuration.", |
| 8 "properties": { | 9 "properties": { |
| 9 "network": { | 10 "network": { |
| 10 "type": "object", | 11 "type": "object", |
| 11 "value": {}, | 12 "value": {}, |
| 12 "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.", |
| 13 "properties": { | 14 "properties": { |
| 14 "networkPredictionEnabled": { | 15 "networkPredictionEnabled": { |
| 15 "$ref": "types.ChromeSetting", | 16 "$ref": "types.ChromeSetting", |
| 16 "value": ["networkPredictionEnabled", {"type":"boolean"}], | 17 "value": ["networkPredictionEnabled", {"type":"boolean"}], |
| 17 "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>." |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 "$ref": "types.ChromeSetting", | 80 "$ref": "types.ChromeSetting", |
| 80 "value": ["protectedContentEnabled", {"type":"boolean"}], | 81 "value": ["protectedContentEnabled", {"type":"boolean"}], |
| 81 "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>.", | 82 "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>.", |
| 82 "platforms": ["windows", "cros", "cros touch"] | 83 "platforms": ["windows", "cros", "cros touch"] |
| 83 } | 84 } |
| 84 } | 85 } |
| 85 } | 86 } |
| 86 } | 87 } |
| 87 } | 88 } |
| 88 ] | 89 ] |
| OLD | NEW |