Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(273)

Side by Side Diff: chrome/common/extensions/api/tabs.json

Issue 1827083005: [Extensions] Convert APIs to use movable types [9] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/common/extensions/api/tab_capture.idl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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},
9 "types": [ 10 "types": [
10 { "id": "MutedInfoReason", 11 { "id": "MutedInfoReason",
11 "type": "string", 12 "type": "string",
12 "description": "An event that caused a muted state change.", 13 "description": "An event that caused a muted state change.",
13 "enum": [ 14 "enum": [
14 {"name": "user", "description": "A user input action has set/overridde n the muted state."}, 15 {"name": "user", "description": "A user input action has set/overridde n the muted state."},
15 {"name": "capture", "description": "Tab capture started, forcing a mut ed state change."}, 16 {"name": "capture", "description": "Tab capture started, forcing a mut ed state change."},
16 {"name": "extension", "description": "An extension, identified by the extensionId field, set the muted state."} 17 {"name": "extension", "description": "An extension, identified by the extensionId field, set the muted state."}
17 ] 18 ]
18 }, 19 },
(...skipping 1158 matching lines...) Expand 10 before | Expand all | Expand 10 after
1177 "tabId": {"type": "integer", "minimum": 0}, 1178 "tabId": {"type": "integer", "minimum": 0},
1178 "oldZoomFactor": {"type": "number"}, 1179 "oldZoomFactor": {"type": "number"},
1179 "newZoomFactor": {"type": "number"}, 1180 "newZoomFactor": {"type": "number"},
1180 "zoomSettings": {"$ref": "ZoomSettings"} 1181 "zoomSettings": {"$ref": "ZoomSettings"}
1181 } 1182 }
1182 }] 1183 }]
1183 } 1184 }
1184 ] 1185 ]
1185 } 1186 }
1186 ] 1187 ]
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/tab_capture.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698