| 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": "tabs", | 7 "namespace": "tabs", |
| 8 "description": "Use the <code>chrome.tabs</code> API to interact with the br
owser's tab system. You can use this API to create, modify, and rearrange tabs i
n the browser.", | 8 "description": "Use the <code>chrome.tabs</code> API to interact with the br
owser's tab system. You can use this API to create, modify, and rearrange tabs i
n the browser.", |
| 9 "types": [ | 9 "types": [ |
| 10 { "id": "MutedInfoReason", | 10 { "id": "MutedInfoReason", |
| (...skipping 963 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 974 "pinned": { | 974 "pinned": { |
| 975 "type": "boolean", | 975 "type": "boolean", |
| 976 "optional": true, | 976 "optional": true, |
| 977 "description": "The tab's new pinned state." | 977 "description": "The tab's new pinned state." |
| 978 }, | 978 }, |
| 979 "audible": { | 979 "audible": { |
| 980 "type": "boolean", | 980 "type": "boolean", |
| 981 "optional": true, | 981 "optional": true, |
| 982 "description": "The tab's new audible state." | 982 "description": "The tab's new audible state." |
| 983 }, | 983 }, |
| 984 "discarded": { |
| 985 "type": "boolean", |
| 986 "optional": true, |
| 987 "description": "The tab's new discarded state." |
| 988 }, |
| 984 "mutedInfo": { | 989 "mutedInfo": { |
| 985 "$ref": "MutedInfo", | 990 "$ref": "MutedInfo", |
| 986 "optional": true, | 991 "optional": true, |
| 987 "description": "The tab's new muted state and the reason for the
change." | 992 "description": "The tab's new muted state and the reason for the
change." |
| 988 }, | 993 }, |
| 989 "favIconUrl": { | 994 "favIconUrl": { |
| 990 "type": "string", | 995 "type": "string", |
| 991 "optional": true, | 996 "optional": true, |
| 992 "description": "The tab's new favicon URL." | 997 "description": "The tab's new favicon URL." |
| 993 }, | 998 }, |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1212 "tabId": {"type": "integer", "minimum": 0}, | 1217 "tabId": {"type": "integer", "minimum": 0}, |
| 1213 "oldZoomFactor": {"type": "number"}, | 1218 "oldZoomFactor": {"type": "number"}, |
| 1214 "newZoomFactor": {"type": "number"}, | 1219 "newZoomFactor": {"type": "number"}, |
| 1215 "zoomSettings": {"$ref": "ZoomSettings"} | 1220 "zoomSettings": {"$ref": "ZoomSettings"} |
| 1216 } | 1221 } |
| 1217 }] | 1222 }] |
| 1218 } | 1223 } |
| 1219 ] | 1224 ] |
| 1220 } | 1225 } |
| 1221 ] | 1226 ] |
| OLD | NEW |