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 "compiler_options": {"use_movable_types": true}, |
9 "types": [ | 10 "types": [ |
10 { | 11 { |
11 "id": "IPHandlingPolicy", | 12 "id": "IPHandlingPolicy", |
12 "type": "string", | 13 "type": "string", |
13 "enum": ["default", "default_public_and_private_interfaces", "default_pu
blic_interface_only", "disable_non_proxied_udp"], | 14 "enum": ["default", "default_public_and_private_interfaces", "default_pu
blic_interface_only", "disable_non_proxied_udp"], |
14 "description": "The IP handling policy of WebRTC." | 15 "description": "The IP handling policy of WebRTC." |
15 } | 16 } |
16 ], | 17 ], |
17 "properties": { | 18 "properties": { |
18 "network": { | 19 "network": { |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 "$ref": "types.ChromeSetting", | 121 "$ref": "types.ChromeSetting", |
121 "value": ["protectedContentEnabled", {"type":"boolean"}], | 122 "value": ["protectedContentEnabled", {"type":"boolean"}], |
122 "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>.", | 123 "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>.", |
123 "platforms": ["windows", "cros", "cros touch"] | 124 "platforms": ["windows", "cros", "cros touch"] |
124 } | 125 } |
125 } | 126 } |
126 } | 127 } |
127 } | 128 } |
128 } | 129 } |
129 ] | 130 ] |
OLD | NEW |