OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "namespace": "tabs", | 3 "namespace": "tabs", |
4 "types": [ | 4 "types": [ |
5 { | 5 { |
6 "id": "Tab", | 6 "id": "Tab", |
7 "type": "object", | 7 "type": "object", |
8 "properties": { | 8 "properties": { |
9 "id": {"type": "integer", "minimum": 0, "description": "The ID of the
tab. Tab IDs are unique within a browser session."}, | 9 "id": {"type": "integer", "minimum": 0, "description": "The ID of the
tab. Tab IDs are unique within a browser session."}, |
10 "index": {"type": "integer", "minimum": 0, "description": "The zero-ba
sed index of the tab within its window."}, | 10 "index": {"type": "integer", "minimum": 0, "description": "The zero-ba
sed index of the tab within its window."}, |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 "enum": ["normal", "popup", "panel", "app"], | 265 "enum": ["normal", "popup", "panel", "app"], |
266 "description": "The type of window the tabs are in." | 266 "description": "The type of window the tabs are in." |
267 } | 267 } |
268 } | 268 } |
269 }, | 269 }, |
270 { | 270 { |
271 "type": "function", | 271 "type": "function", |
272 "name": "callback", | 272 "name": "callback", |
273 "parameters": [ | 273 "parameters": [ |
274 { | 274 { |
| 275 "name": "result", |
275 "type": "array", | 276 "type": "array", |
276 "items": { | 277 "items": { |
277 "$ref": "Tab" | 278 "$ref": "Tab" |
278 } | 279 } |
279 } | 280 } |
280 ] | 281 ] |
281 } | 282 } |
282 ] | 283 ] |
283 }, | 284 }, |
284 { | 285 { |
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
756 "name": "removeInfo", | 757 "name": "removeInfo", |
757 "properties": { | 758 "properties": { |
758 "isWindowClosing": {"type": "boolean", "description": "True when t
he tab is being closed because its window is being closed." } | 759 "isWindowClosing": {"type": "boolean", "description": "True when t
he tab is being closed because its window is being closed." } |
759 } | 760 } |
760 } | 761 } |
761 ] | 762 ] |
762 } | 763 } |
763 ] | 764 ] |
764 } | 765 } |
765 ] | 766 ] |
OLD | NEW |