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

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

Issue 1848103005: [Extensions] Remove the "use_movable_types" entry from idl/json files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
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},
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
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 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698