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 "types": [ | 9 "types": [ |
10 { | 10 { |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 }, | 113 }, |
114 "referrersEnabled": { | 114 "referrersEnabled": { |
115 "$ref": "types.ChromeSetting", | 115 "$ref": "types.ChromeSetting", |
116 "value": ["referrersEnabled", {"type":"boolean"}], | 116 "value": ["referrersEnabled", {"type":"boolean"}], |
117 "description": "If enabled, Chrome sends <code>referer</code> header
s with your requests. Yes, the name of this preference doesn't match the misspel
led header. No, we're not going to change it. The value of this preference is of
type boolean, and the default value is <code>true</code>." | 117 "description": "If enabled, Chrome sends <code>referer</code> header
s with your requests. Yes, the name of this preference doesn't match the misspel
led header. No, we're not going to change it. The value of this preference is of
type boolean, and the default value is <code>true</code>." |
118 }, | 118 }, |
119 "protectedContentEnabled": { | 119 "protectedContentEnabled": { |
120 "$ref": "types.ChromeSetting", | 120 "$ref": "types.ChromeSetting", |
121 "value": ["protectedContentEnabled", {"type":"boolean"}], | 121 "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>.", | 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 "platforms": ["windows", "cros", "cros touch"] | 123 "platforms": ["win", "chromeos"] |
124 } | 124 } |
125 } | 125 } |
126 } | 126 } |
127 } | 127 } |
128 } | 128 } |
129 ] | 129 ] |
OLD | NEW |