| 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 "compiler_options": {"use_movable_types": true}, | |
| 10 "types": [ | 9 "types": [ |
| 11 { "id": "MutedInfoReason", | 10 { "id": "MutedInfoReason", |
| 12 "type": "string", | 11 "type": "string", |
| 13 "description": "An event that caused a muted state change.", | 12 "description": "An event that caused a muted state change.", |
| 14 "enum": [ | 13 "enum": [ |
| 15 {"name": "user", "description": "A user input action has set/overridde
n the muted state."}, | 14 {"name": "user", "description": "A user input action has set/overridde
n the muted state."}, |
| 16 {"name": "capture", "description": "Tab capture started, forcing a mut
ed state change."}, | 15 {"name": "capture", "description": "Tab capture started, forcing a mut
ed state change."}, |
| 17 {"name": "extension", "description": "An extension, identified by the
extensionId field, set the muted state."} | 16 {"name": "extension", "description": "An extension, identified by the
extensionId field, set the muted state."} |
| 18 ] | 17 ] |
| 19 }, | 18 }, |
| (...skipping 1158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1178 "tabId": {"type": "integer", "minimum": 0}, | 1177 "tabId": {"type": "integer", "minimum": 0}, |
| 1179 "oldZoomFactor": {"type": "number"}, | 1178 "oldZoomFactor": {"type": "number"}, |
| 1180 "newZoomFactor": {"type": "number"}, | 1179 "newZoomFactor": {"type": "number"}, |
| 1181 "zoomSettings": {"$ref": "ZoomSettings"} | 1180 "zoomSettings": {"$ref": "ZoomSettings"} |
| 1182 } | 1181 } |
| 1183 }] | 1182 }] |
| 1184 } | 1183 } |
| 1185 ] | 1184 ] |
| 1186 } | 1185 } |
| 1187 ] | 1186 ] |
| OLD | NEW |