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

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

Issue 8958023: Added missing names in extension api jsons (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed a typo Created 8 years, 12 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 [ 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
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
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 ]
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/omnibox.json ('k') | chrome/common/extensions/api/webNavigation.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698