| OLD | NEW |
| 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 Loading... |
| 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 ] |
| OLD | NEW |