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 "unprivileged": true, | 8 "unprivileged": true, |
| 9 "compiler_options": { |
| 10 "generate_type_functions": true |
| 11 }, |
9 "types": [ | 12 "types": [ |
10 { | 13 { |
11 "id": "StorageChange", | 14 "id": "StorageChange", |
12 "type": "object", | 15 "type": "object", |
13 "properties": { | 16 "properties": { |
14 "oldValue": { | 17 "oldValue": { |
15 "type": "any", | 18 "type": "any", |
16 "description": "The old value of the item, if there was an old value
.", | 19 "description": "The old value of the item, if there was an old value
.", |
17 "optional": true | 20 "optional": true |
18 }, | 21 }, |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 }, | 212 }, |
210 "managed": { | 213 "managed": { |
211 "$ref": "StorageArea", | 214 "$ref": "StorageArea", |
212 "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.", | 215 "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.", |
213 "value": [ "managed" ], | 216 "value": [ "managed" ], |
214 "nodoc": true | 217 "nodoc": true |
215 } | 218 } |
216 } | 219 } |
217 } | 220 } |
218 ] | 221 ] |
OLD | NEW |