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

Side by Side Diff: chrome/common/extensions/api/terminal_private.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
« no previous file with comments | « chrome/common/extensions/api/tabs.json ('k') | chrome/common/extensions/api/test.json » ('j') | 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": "terminalPrivate", 7 "namespace": "terminalPrivate",
8 "compiler_options": { 8 "compiler_options": {
9 "implemented_in": "chrome/browser/extensions/api/terminal/terminal_private _api.h" 9 "implemented_in": "chrome/browser/extensions/api/terminal/terminal_private _api.h"
10 }, 10 },
11 "nodoc": true,
12 "platforms": ["chromeos"], 11 "platforms": ["chromeos"],
13 "types": [], 12 "description": "none",
14 "functions": [ 13 "functions": [
15 { 14 {
16 "name": "openTerminalProcess", 15 "name": "openTerminalProcess",
17 "type": "function", 16 "type": "function",
18 "description": "Starts new process.", 17 "description": "Starts new process.",
19 "parameters": [ 18 "parameters": [
20 { 19 {
21 "type": "string", 20 "type": "string",
22 "name": "processName", 21 "name": "processName",
23 "description": "Name of the process to open. Initially only 'crosh' is supported. Another processes may be added in future." 22 "description": "Name of the process to open. Initially only 'crosh' is supported. Another processes may be added in future."
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 { 144 {
146 "name": "text", 145 "name": "text",
147 "type": "string", 146 "type": "string",
148 "description": "Text that was written to the output stream." 147 "description": "Text that was written to the output stream."
149 } 148 }
150 ] 149 ]
151 } 150 }
152 ] 151 ]
153 } 152 }
154 ] 153 ]
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/tabs.json ('k') | chrome/common/extensions/api/test.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698