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": { |
| 9 "implemented_in": "chrome/browser/extensions/api/terminal/terminal_private
_api.h" |
| 10 }, |
8 "nodoc": true, | 11 "nodoc": true, |
9 "platforms": ["chromeos"], | 12 "platforms": ["chromeos"], |
10 "types": [], | 13 "types": [], |
11 "functions": [ | 14 "functions": [ |
12 { | 15 { |
13 "name": "openTerminalProcess", | 16 "name": "openTerminalProcess", |
14 "type": "function", | 17 "type": "function", |
15 "description": "Starts new process.", | 18 "description": "Starts new process.", |
16 "parameters": [ | 19 "parameters": [ |
17 { | 20 { |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 { | 145 { |
143 "name": "text", | 146 "name": "text", |
144 "type": "string", | 147 "type": "string", |
145 "description": "Text that was written to the output stream." | 148 "description": "Text that was written to the output stream." |
146 } | 149 } |
147 ] | 150 ] |
148 } | 151 } |
149 ] | 152 ] |
150 } | 153 } |
151 ] | 154 ] |
OLD | NEW |