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": "storage", | 7 "namespace": "storage", |
| 8 "description": "Use the <code>chrome.storage</code> module to store, retriev
e, and track changes to user data.", |
8 "unprivileged": true, | 9 "unprivileged": true, |
9 "types": [ | 10 "types": [ |
10 { | 11 { |
11 "id": "StorageChange", | 12 "id": "StorageChange", |
12 "type": "object", | 13 "type": "object", |
13 "properties": { | 14 "properties": { |
14 "oldValue": { | 15 "oldValue": { |
15 "type": "any", | 16 "type": "any", |
16 "description": "The old value of the item, if there was an old value
.", | 17 "description": "The old value of the item, if there was an old value
.", |
17 "optional": true | 18 "optional": true |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 }, | 211 }, |
211 "managed": { | 212 "managed": { |
212 "$ref": "StorageArea", | 213 "$ref": "StorageArea", |
213 "description": "Items in the <code>managed</code> storage area are set b
y the domain administrator, and are read-only by the extension; trying to modify
this namespace results in an error.", | 214 "description": "Items in the <code>managed</code> storage area are set b
y the domain administrator, and are read-only by the extension; trying to modify
this namespace results in an error.", |
214 "value": [ "managed" ], | 215 "value": [ "managed" ], |
215 "nodoc": true | 216 "nodoc": true |
216 } | 217 } |
217 } | 218 } |
218 } | 219 } |
219 ] | 220 ] |
OLD | NEW |