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

Side by Side Diff: tools/json_schema_compiler/test/tabs.json

Issue 16876004: Updating JSON Schema Compiler to add description field to schemas. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: (kalman) rebase Created 7 years, 6 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 "description": "The tabs API.",
4 "types": [ 5 "types": [
5 { 6 {
6 "id": "Tab", 7 "id": "Tab",
7 "type": "object", 8 "type": "object",
8 "properties": { 9 "properties": {
9 "id": {"type": "integer", "minimum": 0, "description": "The ID of the tab. Tab IDs are unique within a browser session."}, 10 "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."}, 11 "index": {"type": "integer", "minimum": 0, "description": "The zero-ba sed index of the tab within its window."},
11 "windowId": {"type": "integer", "minimum": 0, "description": "The ID o f the window the tab is contained within."}, 12 "windowId": {"type": "integer", "minimum": 0, "description": "The ID o f the window the tab is contained within."},
12 "selected": {"type": "boolean", "description": "Whether the tab is sel ected.", "nodoc": true}, 13 "selected": {"type": "boolean", "description": "Whether the tab is sel ected.", "nodoc": true},
13 "highlighted": {"type": "boolean", "description": "Whether the tab is highlighted."}, 14 "highlighted": {"type": "boolean", "description": "Whether the tab is highlighted."},
(...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after
760 "name": "removeInfo", 761 "name": "removeInfo",
761 "properties": { 762 "properties": {
762 "isWindowClosing": {"type": "boolean", "description": "True when t he tab is being closed because its window is being closed." } 763 "isWindowClosing": {"type": "boolean", "description": "True when t he tab is being closed because its window is being closed." }
763 } 764 }
764 } 765 }
765 ] 766 ]
766 } 767 }
767 ] 768 ]
768 } 769 }
769 ] 770 ]
OLDNEW
« no previous file with comments | « tools/json_schema_compiler/test/simple_api.json ('k') | tools/json_schema_compiler/test/windows.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698